diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-06 18:55:51 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-06 18:55:51 -0500 |
commit | eebd00ba4692a6a285c9807705331ab924ce225f (patch) | |
tree | 8d269bd84eb8111534d85ad5ecbc502680b20f40 /config | |
parent | 1788dde36e53c4ef16adc5db2d19f44797325496 (diff) |
routes: make server a single resource
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index fc9d45a..580ec72 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -21,7 +21,7 @@ Leaguer::Application.routes.draw do end end - resources :servers + resource :server, only: [:show, :edit, :update] root to: 'static#homepage' |