about summary refs log tree commit diff
path: root/app/models/concerns/streamable.rb
blob: b3354c8193939d1feacb69f70a54dd671f316de8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module Streamable
  extend ActiveSupport::Concern

  included do
    has_one :stream_entry, as: :activity

    def title
      super
    end

    def content
      title
    end

    def target
      super
    end

    def object_type
      :activity
    end

    def thread
      super
    end

    after_create do
      account.stream_entries.create!(activity: self) if account.local?
    end
  end
end