diff options
author | ThibG <thib@sitedethib.com> | 2020-12-14 10:03:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-14 10:03:09 +0100 |
commit | 47e507fa61be6dc39dd9821e1d07c33e993cc246 (patch) | |
tree | a628d53e554ba02a633615b5234698eebe902fab /app/views/auth | |
parent | a7e819b8a8de25414324e354baa62e9abbd3e8c4 (diff) |
Add ability to require invite request text (#15326)
Fixes #15273 Co-authored-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/views/auth')
-rw-r--r-- | app/views/auth/registrations/new.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth/registrations/new.html.haml b/app/views/auth/registrations/new.html.haml index de541847f..6981195ed 100644 --- a/app/views/auth/registrations/new.html.haml +++ b/app/views/auth/registrations/new.html.haml @@ -31,7 +31,7 @@ - if approved_registrations? && !@invite.present? .fields-group = f.simple_fields_for :invite_request, resource.invite_request || resource.build_invite_request do |invite_request_fields| - = invite_request_fields.input :text, as: :text, wrapper: :with_block_label, required: false + = invite_request_fields.input :text, as: :text, wrapper: :with_block_label, required: Setting.require_invite_text = f.input :invite_code, as: :hidden |