050db7d124
It's sole purpose is to denote models that can be associated with a proposable model.
8 lines
140 B
Ruby
8 lines
140 B
Ruby
module PropositionAccepting
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_many :propositions, as: :proposition_accepting
|
|
end
|
|
end
|