chinwagsocial/app/models/concerns/targetable.rb
Eugen Rochko a08e724476 Fix subscriptions:clear task, refactor feeds, refactor streamable activites
and atom feed generation to some extent, as well as the way mentions are
stored
2016-03-25 02:13:30 +01:00

10 lines
117 B
Ruby

module Targetable
extend ActiveSupport::Concern
included do
def object_type
:object
end
end
end