about summary refs log tree commit diff
path: root/app/models/mute.rb
blob: 7987ed00754929968410e6b2ff2f20c007ad9c2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class Mute < ApplicationRecord
  include Paginable

  belongs_to :account, required: true
  belongs_to :target_account, class_name: 'Account', required: true

  validates :account_id, uniqueness: { scope: :target_account_id }
end