consul/consul

View on GitHub
app/models/concerns/communitable.rb

Summary

Maintainability
A
0 mins
Test Coverage
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