Files
nairobi/app/models/concerns/communitable.rb
2017-09-06 14:12:32 +02:00

15 lines
246 B
Ruby

module Communitable
extend ActiveSupport::Concern
included do
belongs_to :community
before_create :associate_community
end
def associate_community
community = Community.create
self.community_id = community.id
end
end