|
|
CafeGrader::Application.routes.draw do
|
|
|
get "sources/direct_edit"
|
|
|
|
|
|
root :to => 'main#login'
|
|
|
|
|
|
resources :contests
|
|
|
|
|
|
resources :sites
|
|
|
|
|
|
resources :announcements do
|
|
|
member do
|
|
|
get 'toggle','toggle_front'
|
|
|
end
|
|
|
end
|
|
|
|
|
|
resources :problems do
|
|
|
member do
|
|
|
get 'toggle'
|
|
|
get 'toggle_test'
|
|
|
end
|
|
|
collection do
|
|
|
get 'turn_all_off'
|
|
|
get 'turn_all_on'
|
|
|
get 'import'
|
|
|
get 'manage'
|
|
|
end
|
|
|
end
|
|
|
|
|
|
resources :grader_configuration, controller: 'configurations'
|
|
|
|
|
|
resources :users do
|
|
|
member do
|
|
|
get 'toggle_activate', 'toggle_enable'
|
|
|
end
|
|
|
end
|
|
|
|
|
|
#source code edit
|
|
|
get 'sources/direct_edit/:pid', to: 'sources#direct_edit', as: 'direct_edit'
|
|
|
get 'sources/direct_edit_submission/:sid', to: 'sources#direct_edit_submission', as: 'direct_edit_submission'
|
|
|
get 'sources/get_latest_submission_status/:uid/:pid', to: 'sources#get_latest_submission_status', as: 'get_latest_submission_status'
|
|
|
|
|
|
|
|
|
match 'tasks/view/:file.:ext' => 'tasks#view'
|
|
|
match 'tasks/download/:id/:file.:ext' => 'tasks#download'
|
|
|
match 'heartbeat/:id/edit' => 'heartbeat#edit'
|
|
|
|
|
|
#main
|
|
|
get "main/list"
|
|
|
get 'main/submission(/:id)', to: 'main#submission', as: 'main_submission'
|
|
|
|
|
|
#report
|
|
|
get 'report/problem_hof(/:id)', to: 'report#problem_hof', as: 'report_problem_hof'
|
|
|
get "report/login"
|
|
|
get 'report/max_score', to: 'report#max_score', as: 'report_max_score'
|
|
|
post 'report/show_max_score', to: 'report#show_max_score', as: 'report_show_max_score'
|
|
|
|
|
|
#grader
|
|
|
get 'graders/list', to: 'graders#list', as: 'grader_list'
|
|
|
|
|
|
|
|
|
match 'heartbeat/:id/edit' => 'heartbeat#edit'
|
|
|
|
|
|
# See how all your routes lay out with "rake routes"
|
|
|
|
|
|
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
|
|
# Note: This route will make all actions in every controller accessible via GET requests.
|
|
|
match ':controller(/:action(/:id))(.:format)'
|
|
|
end
|
|
|
|