mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
630de52fdd
* Add `required: true` option to foreign column * Fixes NoMethodError ``` > Favourite.new.valid? NoMethodError: undefined method `reblog?' for nil:NilClass ```
11 lines
261 B
Ruby
11 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Mute < ApplicationRecord
|
|
include Paginable
|
|
|
|
belongs_to :account, required: true
|
|
belongs_to :target_account, class_name: 'Account', required: true
|
|
|
|
validates :account_id, uniqueness: { scope: :target_account_id }
|
|
end
|