diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-07 01:14:12 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-07 01:14:12 +0100 |
commit | 23fc424b7aea139a0aff5cd347f46c81e50c2c56 (patch) | |
tree | 47ce5106180cac5ebe93adaa4c91edc2c5ce8b79 /app/models | |
parent | b835f4aa1ce12cc31a721750a857d8d08a50069a (diff) |
Account notes (bios) can now contain links. Character limit upped to 160
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/account.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index cb186b465..936095ffd 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -21,7 +21,7 @@ class Account < ApplicationRecord # Local user profile validations validates :display_name, length: { maximum: 30 }, if: 'local?' - validates :note, length: { maximum: 124 }, if: 'local?' + validates :note, length: { maximum: 160 }, if: 'local?' # Timelines has_many :stream_entries, inverse_of: :account, dependent: :destroy |