mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
11 lines
282 B
Ruby
11 lines
282 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Mention < ApplicationRecord
|
|
belongs_to :account, inverse_of: :mentions, required: true
|
|
belongs_to :status, required: true
|
|
|
|
has_one :notification, as: :activity, dependent: :destroy
|
|
|
|
validates :account, uniqueness: { scope: :status }
|
|
end
|