diff options
| author | Alban Peignier | 2018-04-03 09:22:29 +0200 |
|---|---|---|
| committer | Alban Peignier | 2018-04-03 09:22:29 +0200 |
| commit | 95172d1a3b00f58cb57d39f3fc6fc6c5851c40ec (patch) | |
| tree | 3b492e9201db014ac24e1c268a03a572250c401b | |
| parent | 501319849f6ad6c058d062df458df3f7838fc634 (diff) | |
| download | chouette-core-95172d1a3b00f58cb57d39f3fc6fc6c5851c40ec.tar.bz2 | |
Set default for enumerizes :for_boarding and :for_alighting. Refs #63876387-default-values-for-stop-point-alighting-boarding
| -rw-r--r-- | app/models/chouette/for_alighting_enumerations.rb | 2 | ||||
| -rw-r--r-- | app/models/chouette/for_boarding_enumerations.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/models/chouette/for_alighting_enumerations.rb b/app/models/chouette/for_alighting_enumerations.rb index ab07a670d..2e15fcb58 100644 --- a/app/models/chouette/for_alighting_enumerations.rb +++ b/app/models/chouette/for_alighting_enumerations.rb @@ -3,6 +3,6 @@ module Chouette extend Enumerize extend ActiveModel::Naming - enumerize :for_alighting, in: %w[normal forbidden request_stop is_flexible] + enumerize :for_alighting, in: %w[normal forbidden request_stop is_flexible], default: :normal end end diff --git a/app/models/chouette/for_boarding_enumerations.rb b/app/models/chouette/for_boarding_enumerations.rb index 48f8762c2..0190bf805 100644 --- a/app/models/chouette/for_boarding_enumerations.rb +++ b/app/models/chouette/for_boarding_enumerations.rb @@ -3,6 +3,6 @@ module Chouette extend Enumerize extend ActiveModel::Naming - enumerize :for_boarding, in: %w[normal forbidden request_stop is_flexible] + enumerize :for_boarding, in: %w[normal forbidden request_stop is_flexible], default: :normal end end |
