From fcbf557bd2c4db3734e328ffe434895457836478 Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Tue, 30 Apr 2019 21:51:24 +0200 Subject: Add site-wide options to show reblogs and replies in local/public timelines Fixes #1021 --- app/views/admin/settings/edit.html.haml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'app/views/admin/settings') diff --git a/app/views/admin/settings/edit.html.haml b/app/views/admin/settings/edit.html.haml index 8f7acde5f..a8c9f6a58 100644 --- a/app/views/admin/settings/edit.html.haml +++ b/app/views/admin/settings/edit.html.haml @@ -72,6 +72,12 @@ .fields-group = f.input :enable_keybase, as: :boolean, wrapper: :with_label, label: t('admin.settings.enable_keybase.title'), hint: t('admin.settings.enable_keybase.desc_html') + .fields-group + = f.input :show_reblogs_in_public_timelines, as: :boolean, wrapper: :with_label, label: t('admin.settings.show_reblogs_in_public_timelines.title'), hint: t('admin.settings.show_reblogs_in_public_timelines.desc_html') + + .fields-group + = f.input :show_replies_in_public_timelines, as: :boolean, wrapper: :with_label, label: t('admin.settings.show_replies_in_public_timelines.title'), hint: t('admin.settings.show_replies_in_public_timelines.desc_html') + %hr.spacer/ .fields-group -- cgit