From 21438b54bdaf3c557ec9ebbc482a2c418d8c64f8 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Sun, 19 Jul 2020 18:50:24 -0500 Subject: [Feature] Add manual publishing option --- app/views/settings/preferences/other/show.html.haml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/views/settings/preferences/other') diff --git a/app/views/settings/preferences/other/show.html.haml b/app/views/settings/preferences/other/show.html.haml index 3b5c7016d..efe8cd0db 100644 --- a/app/views/settings/preferences/other/show.html.haml +++ b/app/views/settings/preferences/other/show.html.haml @@ -29,6 +29,9 @@ .fields-group.fields-row__column.fields-row__column-6 = f.input :setting_default_language, collection: [nil] + filterable_languages.sort, wrapper: :with_label, label_method: lambda { |locale| locale.nil? ? I18n.t('statuses.language_detection') : human_locale(locale) }, required: false, include_blank: false, hint: false + .fields-group + = f.input :setting_manual_publish, as: :boolean, wrapper: :with_label + .fields-group = f.input :setting_default_sensitive, as: :boolean, wrapper: :with_label -- cgit