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.
14 lines
291 B
14 lines
291 B
7 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
class ActivityPub::Activity::Delete < ActivityPub::Activity
|
||
|
def perform
|
||
|
status = Status.find_by(uri: object_uri, account: @account)
|
||
|
|
||
|
if status.nil?
|
||
|
delete_later!(object_uri)
|
||
|
else
|
||
|
RemoveStatusService.new.call(status)
|
||
|
end
|
||
|
end
|
||
|
end
|