mastodon/app/models/follow_request.rb

32 lines
805 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# == Schema Information
#
# Table name: follow_requests
#
# id :integer not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
# account_id :integer not null
# target_account_id :integer not null
#
class FollowRequest < ApplicationRecord
2016-12-26 19:30:45 +01:00
include Paginable
2017-04-05 00:29:56 +02:00
belongs_to :account, required: true
belongs_to :target_account, class_name: 'Account', required: true
has_one :notification, as: :activity, dependent: :destroy
validates :account_id, uniqueness: { scope: :target_account_id }
def authorize!
account.follow!(target_account)
2017-01-26 03:56:26 +01:00
MergeWorker.perform_async(target_account.id, account.id)
2017-02-11 02:12:05 +01:00
destroy!
end
alias reject! destroy!
end