clarion/app/models/concerns/proposable.rb
Petko Bordjukov 8508d64a92 Introduce a Proposable concern
The Proposable concern defines a relation to a Proposition and defines
scopes that translate to the statuses of the Proposition.
2015-04-20 18:35:22 +03:00

12 lines
317 B
Ruby

module Proposable
extend ActiveSupport::Concern
included do
has_one :proposition, as: :proposable
Proposition.defined_enums["status"].keys.each do |status|
scope status.to_sym, -> { joins(:proposition).where(propositions: {status: Proposition.defined_enums["status"][status]}) }
end
end
end