mastodon/app/models/follow_request.rb

22 lines
469 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class FollowRequest < ApplicationRecord
2016-12-26 19:30:45 +01:00
include Paginable
belongs_to :account
belongs_to :target_account, class_name: 'Account'
validates :account, :target_account, presence: true
validates :account_id, uniqueness: { scope: :target_account_id }
def authorize!
account.follow!(target_account)
FeedManager.instance.merge_into_timeline(target_account, account)
destroy!
end
def reject!
destroy!
end
end