mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
0518492158
StreamEntry model. Simply render Salmon slaps as they are needed
25 lines
522 B
Ruby
25 lines
522 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FollowRequest < ApplicationRecord
|
|
include Paginable
|
|
|
|
belongs_to :account
|
|
belongs_to :target_account, class_name: 'Account'
|
|
|
|
has_one :notification, as: :activity, dependent: :destroy
|
|
|
|
validates :account, :target_account, presence: true
|
|
validates :account_id, uniqueness: { scope: :target_account_id }
|
|
|
|
def authorize!
|
|
account.follow!(target_account)
|
|
MergeWorker.perform_async(target_account.id, account.id)
|
|
|
|
destroy!
|
|
end
|
|
|
|
def reject!
|
|
destroy!
|
|
end
|
|
end
|