2016-11-15 17:56:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-17 18:56:23 +03:00
|
|
|
class Mention < ApplicationRecord
|
2016-02-25 01:17:01 +02:00
|
|
|
belongs_to :account, inverse_of: :mentions
|
2016-02-28 22:22:56 +02:00
|
|
|
belongs_to :status
|
2016-02-25 01:17:01 +02:00
|
|
|
|
2016-11-21 15:59:13 +02:00
|
|
|
has_one :notification, as: :activity, dependent: :destroy
|
|
|
|
|
2016-02-25 01:17:01 +02:00
|
|
|
validates :account, :status, presence: true
|
|
|
|
validates :account, uniqueness: { scope: :status }
|
|
|
|
end
|