Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
add cheat detail
Commit Description:
add cheat detail
class ConfigurationsController < ApplicationController
before_filter :authenticate
before_filter { | controller | controller . authorization_by_roles ( [ 'admin' ] )}
def index
@configurations = GraderConfiguration . find ( :all ,
:order => '`key`' )
end
def reload
GraderConfiguration . reload
redirect_to :action => 'index'
end
def update
@config = GraderConfiguration . find ( params [ :id ] )
respond_to do | format |
if @config . update_attributes ( params [ :grader_configuration ] )
format . json { head :ok }
else
format . json { respond_with_bip ( @config ) }
end
end
end
end
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings