about summary refs log tree commit diff
path: root/app/services/remove_status_service.rb
blob: 1b5da6b2ab11a4b94c4bc7cdd532929f806709ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class RemoveStatusService < BaseService
  def call(status)
    status.destroy!

    # TODO
    # Remove from timelines of self, followers, and mentioned accounts
    # For remote mentioned accounts, send delete Salmon
    # Push delete event through ActionCable
  end
end