2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-17 17:56:23 +02:00
|
|
|
class Mention < ApplicationRecord
|
2016-02-25 00:17:01 +01:00
|
|
|
belongs_to :account, inverse_of: :mentions
|
2016-02-28 21:22:56 +01:00
|
|
|
belongs_to :status
|
2016-02-25 00:17:01 +01:00
|
|
|
|
|
|
|
validates :account, :status, presence: true
|
|
|
|
validates :account, uniqueness: { scope: :status }
|
|
|
|
end
|