diff options
author | Azul <azul@leap.se> | 2014-05-20 12:30:55 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-05-26 12:59:26 +0200 |
commit | 467dd712a19d48fc653cfc0e58201e6657d2c1f9 (patch) | |
tree | 44a44fec523843652d1c0bc0ba410f6e7710b3d7 /engines/support/config | |
parent | 7638970e233eaebc48abd499c37c274b48c97a96 (diff) |
split up and refactor TicketController#update
close and open actions for plain opening and closing the tickets
respond_with so fields are not cleared on invalid update
the custom actions are not strictly restful. But adding a subresource felt like too much overhead and is conceptually hard to grasp (so we destroy the openess of the ticket to close it?).
Diffstat (limited to 'engines/support/config')
-rw-r--r-- | engines/support/config/routes.rb | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/engines/support/config/routes.rb b/engines/support/config/routes.rb index 23e0c11..ca471b3 100644 --- a/engines/support/config/routes.rb +++ b/engines/support/config/routes.rb @@ -1,8 +1,16 @@ Rails.application.routes.draw do - scope "(:locale)", :locale => MATCH_LOCALE do - resources :tickets, :except => :edit + scope "(:locale)", locale: MATCH_LOCALE do + + resources :tickets, except: :edit do + member do + put 'open' + put 'close' + end + end + resources :users do - resources :tickets, :except => :edit + resources :tickets, except: :edit end + end end |