This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
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
|