blob: 0190bf8052d49dce93b16fbc00cfe18aed04925f (
plain)
1
2
3
4
5
6
7
8
|
module Chouette
module ForBoardingEnumerations
extend Enumerize
extend ActiveModel::Naming
enumerize :for_boarding, in: %w[normal forbidden request_stop is_flexible], default: :normal
end
end
|