mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 19:45:13 +00:00
9 lines
117 B
Ruby
9 lines
117 B
Ruby
module Targetable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
def object_type
|
|
:object
|
|
end
|
|
end
|
|
end
|