Gab-Social/app/models/follow_request.rb

38 lines
916 B
Ruby
Raw Normal View History

2019-07-02 07:10:25 +00:00
# frozen_string_literal: true
# == Schema Information
#
# Table name: follow_requests
#
# id :bigint(8) not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
# account_id :bigint(8) not null
# target_account_id :bigint(8) not null
# show_reblogs :boolean default(TRUE), not null
# uri :string
#
class FollowRequest < ApplicationRecord
include Paginable
include RelationshipCacheable
belongs_to :account
belongs_to :target_account, class_name: 'Account'
has_one :notification, as: :activity, dependent: :destroy
validates :account_id, uniqueness: { scope: :target_account_id }
validates_with FollowLimitValidator, on: :create
def authorize!
2020-11-15 18:48:32 +00:00
account.follow!(target_account)
2019-07-02 07:10:25 +00:00
destroy!
end
alias reject! destroy!
def local?
2020-11-15 18:48:32 +00:00
false
2019-07-02 07:10:25 +00:00
end
end