Show More
Commit Description:
problem toggle on/off
Commit Description:
problem toggle on/off
File last commit:
Show/Diff file:
Action:
config/routes.rb | 29 lines | 785 B | text/x-ruby | RubyLexer |
Jittat Fakcharoenphol
boots into rails 3
r318 CafeGrader::Application.routes.draw do
bootstrap navbar
r553 root :to => 'main#login'
add login stat
r410 get "report/login"
Jittat Fakcharoenphol
boots into rails 3
r318 resources :contests
resources :announcements
change announcement toggle into bootstrap button with processing state
r557 match 'announcements/toggle/:id' => 'announcements#toggle'
wip: bootstrap toggle switch...
r556
Jittat Fakcharoenphol
boots into rails 3
r318 resources :sites
Jittat Fakcharoenphol
added contest model
r266
problem toggle on/off
r558 resources :problem
add best_in_place...
r474 resources :grader_configuration, controller: 'configurations'
Jittat Fakcharoenphol
boots into rails 3
r318 match 'tasks/view/:file.:ext' => 'tasks#view'
match 'tasks/download/:id/:file.:ext' => 'tasks#download'
bootstrap navbar
r553 match 'heartbeat/:id/edit' => 'heartbeat#edit'
Jittat Fakcharoenphol
boots into rails 3
r318
bootstrap navbar
r553 #main
get "main/list"
add heart_beat...
r540
Jittat Fakcharoenphol
boots into rails 3
r318 # 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)'
pramook
initial commit...
r0 end