10 lines
194 B
Ruby
10 lines
194 B
Ruby
module Followable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_many :follows, as: :followable, dependent: :destroy
|
|
has_many :followers, through: :follows, source: :user
|
|
end
|
|
|
|
end
|