|
|
@ -52,10 +52,10 @@ class Account < ApplicationRecord |
|
|
|
has_one :user, inverse_of: :account |
|
|
|
has_one :user, inverse_of: :account |
|
|
|
|
|
|
|
|
|
|
|
validates :username, presence: true |
|
|
|
validates :username, presence: true |
|
|
|
validates :username, uniqueness: { scope: :domain, case_sensitive: true }, unless: 'local?' |
|
|
|
validates :username, uniqueness: { scope: :domain, case_sensitive: true }, unless: :local? |
|
|
|
|
|
|
|
|
|
|
|
# Local user validations |
|
|
|
# Local user validations |
|
|
|
with_options if: 'local?' do |
|
|
|
with_options if: :local? do |
|
|
|
validates :username, format: { with: /\A[a-z0-9_]+\z/i }, uniqueness: { scope: :domain, case_sensitive: false }, length: { maximum: 30 } |
|
|
|
validates :username, format: { with: /\A[a-z0-9_]+\z/i }, uniqueness: { scope: :domain, case_sensitive: false }, length: { maximum: 30 } |
|
|
|
validates :display_name, length: { maximum: 30 } |
|
|
|
validates :display_name, length: { maximum: 30 } |
|
|
|
validates :note, length: { maximum: 160 } |
|
|
|
validates :note, length: { maximum: 160 } |
|
|
|