diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/settings/preferences/privacy/show.html.haml | 3 | ||||
-rw-r--r-- | app/views/settings/profiles/show.html.haml | 9 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app/views/settings/preferences/privacy/show.html.haml b/app/views/settings/preferences/privacy/show.html.haml index 8f7199665..55d27844a 100644 --- a/app/views/settings/preferences/privacy/show.html.haml +++ b/app/views/settings/preferences/privacy/show.html.haml @@ -29,9 +29,6 @@ .fields-group = f.input :setting_hide_network, as: :boolean, wrapper: :with_label - .fields-group - = f.input :setting_rss_disabled, as: :boolean, wrapper: :with_label - - unless Setting.hide_followers_count .fields-group = f.input :setting_hide_followers_count, as: :boolean, wrapper: :with_label diff --git a/app/views/settings/profiles/show.html.haml b/app/views/settings/profiles/show.html.haml index ef2600169..8c6c4c933 100644 --- a/app/views/settings/profiles/show.html.haml +++ b/app/views/settings/profiles/show.html.haml @@ -46,8 +46,15 @@ .fields-group = f.input :private, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.private') + %h4= t 'settings.profiles.compatibility' + + %p.hint= t 'settings.profiles.compatibility_html' + + .fields-group + = f.input :no_verify_auth, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.no_verify_auth_html') + .fields-group - = f.input :require_auth, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.require_auth') + = f.input :allow_anonymous, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.allow_anonymous_html') %hr.spacer/ |