diff options
| author | cedricnjanga | 2018-03-06 06:53:04 -0800 |
|---|---|---|
| committer | cedricnjanga | 2018-03-09 08:48:56 -0800 |
| commit | f6fd7707c0ae9f23769928da6ba180327915e74f (patch) | |
| tree | 995b7b9526e3480f146164cd08da3aae0a22584e /app | |
| parent | a26a2e98b9552467d4a92ad6b5be22c3f3070efa (diff) | |
| download | chouette-core-f6fd7707c0ae9f23769928da6ba180327915e74f.tar.bz2 | |
Refs #5934 Remove destructive action links for route stop points in Routes#show
Diffstat (limited to 'app')
| -rw-r--r-- | app/decorators/stop_point_decorator.rb | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/app/decorators/stop_point_decorator.rb b/app/decorators/stop_point_decorator.rb index cb4c1e65d..4ff5bce9c 100644 --- a/app/decorators/stop_point_decorator.rb +++ b/app/decorators/stop_point_decorator.rb @@ -10,26 +10,5 @@ class StopPointDecorator < AF83::Decorator ) end end - - instance_decorator.edit_action_link if: ->{ h.policy(Chouette::StopArea).update? } do |l| - l.content h.t('stop_points.actions.edit') - l.href do - h.edit_stop_area_referential_stop_area_path( - object.stop_area.stop_area_referential, - object.stop_area - ) - end - end - - instance_decorator.destroy_action_link if: ->{ h.policy(Chouette::StopArea).destroy? } do |l| - l.content h.destroy_link_content('stop_points.actions.destroy') - l.href do - h.referential_stop_area_path( - object.referential, - object.stop_area - ) - end - l.data confirm: h.t('stop_points.actions.destroy_confirm') - end end end |
