This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-03-04 09:19:11 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Remove < ActivityPub::Activity
|
|
|
|
def perform
|
2018-03-07 03:54:46 +01:00
|
|
|
return unless @json['target'].present? && value_or_id(@json['target']) == @account.featured_collection_url
|
2018-03-04 09:19:11 +01:00
|
|
|
|
|
|
|
status = status_from_uri(object_uri)
|
|
|
|
|
2018-05-18 11:33:56 +02:00
|
|
|
return unless !status.nil? && status.account_id == @account.id
|
2018-03-04 09:19:11 +01:00
|
|
|
|
|
|
|
pin = StatusPin.find_by(account: @account, status: status)
|
|
|
|
pin&.destroy!
|
|
|
|
end
|
|
|
|
end
|