2018-03-04 09:19:11 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Add < ActivityPub::Activity
|
|
|
|
def perform
|
|
|
|
return unless @json['target'].present? && value_or_id(@json['target']) == @account.featured_collection_url
|
|
|
|
|
2022-01-17 00:49:55 +01:00
|
|
|
status = status_from_object
|
2018-03-04 09:19:11 +01:00
|
|
|
|
2018-05-18 11:33:56 +02:00
|
|
|
return unless !status.nil? && status.account_id == @account.id && !@account.pinned?(status)
|
2018-03-04 09:19:11 +01:00
|
|
|
|
|
|
|
StatusPin.create!(account: @account, status: status)
|
|
|
|
end
|
|
|
|
end
|