Module: Inkwell::ActsAsInkwellUser::Config

Defined in:
lib/acts_as_inkwell_user/base.rb

Instance Method Summary collapse

Instance Method Details

#acts_as_inkwell_userObject



12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/acts_as_inkwell_user/base.rb', line 12

def acts_as_inkwell_user
  has_many :comments, :class_name => 'Inkwell::Comment'
  has_many :following_relations, :class_name => 'Inkwell::Following', :foreign_key => :follower_id
  has_many :followings, :through => :following_relations, :class_name => ::Inkwell::Engine::config.user_table.to_s.singularize.capitalize
  has_many :follower_relations, :class_name => 'Inkwell::Following', :foreign_key => :followed_id
  has_many :followers, :through => :follower_relations, :class_name => ::Inkwell::Engine::config.user_table.to_s.singularize.capitalize
  if ::Inkwell::Engine::config.respond_to?('community_table')
    has_many :communities_users, :class_name => 'Inkwell::CommunityUser'
    has_many :communities, -> {where "inkwell_community_users.active" => true}, :through => :communities_users, :class_name => ::Inkwell::Engine::config.community_table.to_s.singularize.capitalize
  end
  before_destroy :destroy_processing
  include ::Inkwell::ActsAsInkwellUser::InstanceMethods
end