The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 rivejä
272 B

  1. class RemoveStatusService < BaseService
  2. def call(status)
  3. status.destroy!
  4. # TODO
  5. # Remove from timelines of self, followers, and mentioned accounts
  6. # For remote mentioned accounts, send delete Salmon
  7. # Push delete event through ActionCable
  8. end
  9. end