mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 23:28:08 +01:00
7 lines
205 B
Ruby
7 lines
205 B
Ruby
class Mention < ActiveRecord::Base
|
|
belongs_to :account, inverse_of: :mentions
|
|
belongs_to :status
|
|
|
|
validates :account, :status, presence: true
|
|
validates :account, uniqueness: { scope: :status }
|
|
end
|