diff options
| author | Alban Peignier | 2016-05-10 16:50:09 +0200 |
|---|---|---|
| committer | Alban Peignier | 2016-05-10 16:53:01 +0200 |
| commit | 7b8b23d00e0fa263a566484dceb04361cf77432a (patch) | |
| tree | 1ec638d5eafa6f010814d503227334474bc7c8aa /app/models/line_referential.rb | |
| parent | 304040cf0fae4673bf5913b0d09da5fda5227b8e (diff) | |
| download | chouette-core-7b8b23d00e0fa263a566484dceb04361cf77432a.tar.bz2 | |
Create LineReferential with a basic controller and a seed for STIF context. Refs #824
Diffstat (limited to 'app/models/line_referential.rb')
| -rw-r--r-- | app/models/line_referential.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/models/line_referential.rb b/app/models/line_referential.rb new file mode 100644 index 000000000..e17aea456 --- /dev/null +++ b/app/models/line_referential.rb @@ -0,0 +1,9 @@ +class LineReferential < ActiveRecord::Base + has_many :line_referential_memberships + has_many :organisations, through: :line_referential_memberships + + def add_member(organisation, options = {}) + attributes = options.merge organisation: organisation + line_referential_memberships.build attributes + end +end |
