mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-12 23:16:55 +01:00
8 lines
228 B
Ruby
8 lines
228 B
Ruby
|
class Mention < ActiveRecord::Base
|
||
|
belongs_to :account, inverse_of: :mentions
|
||
|
belongs_to :status, inverse_of: :mentions
|
||
|
|
||
|
validates :account, :status, presence: true
|
||
|
validates :account, uniqueness: { scope: :status }
|
||
|
end
|