aboutsummaryrefslogtreecommitdiffstats
path: root/app/models
diff options
context:
space:
mode:
authorZog2017-12-20 12:58:20 +0100
committerAlban Peignier2017-12-21 21:19:27 +0100
commit9a34cb48f49df574ae1e7c599713ed246e2938cf (patch)
tree49c91cfdaa645f39363c3e8c492b86a0dde08c89 /app/models
parent8cd9b9ee5fc127b2f39a9c89c71327ab8d5e9cec (diff)
downloadchouette-core-9a34cb48f49df574ae1e7c599713ed246e2938cf.tar.bz2
Refs #5430 @2h; Deactivate lines instead of destroying them
- Add `activate` and `deactivate` actions in `LinesController`, as well as corresponding routes - Add `activate!` and `deactivate!` methods in `Chouette::Line`, as well as `activated?` - Add `activate?` and `deactivate?` permissions in `LinePolicy` - Add corresponding `action_links`in the Decorator - Create helper for these actions - Add an optional `'extra_class` to the Links - Update styles for ".delete-action" to handle the case where there are several - Add I18n keys accordingly
Diffstat (limited to 'app/models')
-rw-r--r--app/models/chouette/line.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/models/chouette/line.rb b/app/models/chouette/line.rb
index 93d4f5e8b..2d776e94b 100644
--- a/app/models/chouette/line.rb
+++ b/app/models/chouette/line.rb
@@ -79,5 +79,16 @@ module Chouette
line_referential.companies.where(id: ([company_id] + Array(secondary_company_ids)).compact)
end
+ def deactivate!
+ update_attribute :deactivated, true
+ end
+
+ def activate!
+ update_attribute :deactivated, false
+ end
+
+ def activated?
+ !deactivated
+ end
end
end