FEATURE: allow for longer membership domains (#21428)

This commit is contained in:
Sam 2023-05-08 12:40:37 +10:00 committed by GitHub
parent de96376c23
commit 608bde734b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class Group < ActiveRecord::Base
validate :incoming_email_validator
validate :can_allow_membership_requests, if: :allow_membership_requests
validate :validate_grant_trust_level, if: :will_save_change_to_grant_trust_level?
validates :automatic_membership_email_domains, length: { maximum: 100 }
validates :automatic_membership_email_domains, length: { maximum: 1000 }
validates :bio_raw, length: { maximum: 3000 }
validates :membership_request_template, length: { maximum: 500 }
validates :full_name, length: { maximum: 100 }