2016-11-15 17:56:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-17 18:56:23 +03:00
|
|
|
class Mention < ApplicationRecord
|
2017-04-05 01:29:56 +03:00
|
|
|
belongs_to :account, inverse_of: :mentions, required: true
|
|
|
|
belongs_to :status, required: true
|
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, uniqueness: { scope: :status }
|
|
|
|
end
|