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/admin | |
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/admin')
-rw-r--r-- | app/views/admin/settings/edit.html.haml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/views/admin/settings/edit.html.haml b/app/views/admin/settings/edit.html.haml index 9e28766b1..a162490b5 100644 --- a/app/views/admin/settings/edit.html.haml +++ b/app/views/admin/settings/edit.html.haml @@ -44,6 +44,12 @@ %hr.spacer/ .fields-group + = f.input :require_invite_text, as: :boolean, wrapper: :with_label, label: t('admin.settings.registrations.require_invite_text.title'), hint: t('admin.settings.registrations.require_invite_text.desc_html'), disabled: !approved_registrations? + .fields-group + + %hr.spacer/ + + .fields-group = f.input :enable_bootstrap_timeline_accounts, as: :boolean, wrapper: :with_label, label: t('admin.settings.enable_bootstrap_timeline_accounts.title') .fields-group = f.input :bootstrap_timeline_accounts, wrapper: :with_block_label, label: t('admin.settings.bootstrap_timeline_accounts.title'), hint: t('admin.settings.bootstrap_timeline_accounts.desc_html'), disabled: !Setting.enable_bootstrap_timeline_accounts |