gearheads
/
mastodon
Archived
2
0
Fork 0

Gearheads: bump account note (bio) to 5000 characters

gh/dev
Ducky 2023-08-02 02:50:09 +01:00
parent 767aa3d66f
commit 1a0f6a8e5e
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class Account < ApplicationRecord
validates :username, format: { with: /\A[a-z0-9_]+\z/i }, length: { maximum: 30 }, if: -> { local? && will_save_change_to_username? && actor_type != 'Application' }
validates_with UnreservedUsernameValidator, if: -> { local? && will_save_change_to_username? && actor_type != 'Application' }
validates :display_name, length: { maximum: 30 }, if: -> { local? && will_save_change_to_display_name? }
validates :note, note_length: { maximum: 500 }, if: -> { local? && will_save_change_to_note? }
validates :note, note_length: { maximum: 5000 }, if: -> { local? && will_save_change_to_note? }
validates :fields, length: { maximum: 4 }, if: -> { local? && will_save_change_to_fields? }
scope :remote, -> { where.not(domain: nil) }