diff options
| author | Zog | 2017-12-20 17:48:17 +0100 | 
|---|---|---|
| committer | Alban Peignier | 2017-12-21 21:35:02 +0100 | 
| commit | e8285678efc9a62115fe0af4086c7a3959666bf8 (patch) | |
| tree | 64b18197dff4d6707be10bfccca9240c601ffded /app/controllers/stop_areas_controller.rb | |
| parent | 01b2d2b785d99c9b031269fc741b70ee9c248f16 (diff) | |
| download | chouette-core-e8285678efc9a62115fe0af4086c7a3959666bf8.tar.bz2 | |
Refs #5349 @1h; Deactivate StopAreas instead of destroying them5349-deactivate-stop-areas
- Update decorators (had to split `action_links` because of
`StopPointDecorator` inheriting from `StopAreaDecorator`)
- Add methods on model
- Add routes
- Add actions on controller (`Activatable` concern, shared with
`LinesController`)
- Add I18n keys
Diffstat (limited to 'app/controllers/stop_areas_controller.rb')
| -rw-r--r-- | app/controllers/stop_areas_controller.rb | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/app/controllers/stop_areas_controller.rb b/app/controllers/stop_areas_controller.rb index 498493f1e..b478d38fa 100644 --- a/app/controllers/stop_areas_controller.rb +++ b/app/controllers/stop_areas_controller.rb @@ -1,6 +1,7 @@  class StopAreasController < ChouetteController    include ApplicationHelper - +  include Activatable +      defaults :resource_class => Chouette::StopArea    belongs_to :stop_area_referential | 
