diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-01-21 19:36:33 +0100 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-01-27 13:56:41 +0100 |
commit | 05415fa5d38e988d967cc783dd2eb0852852fce2 (patch) | |
tree | bfc59aee525aaef4b8de40316574872dd4a696a7 /app/lib | |
parent | 64cb9b691310a8b955e23b57ed0af51686f3ceb4 (diff) |
Make storing and displaying application used to toot opt-in
Diffstat (limited to 'app/lib')
-rw-r--r-- | app/lib/user_settings_decorator.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/lib/user_settings_decorator.rb b/app/lib/user_settings_decorator.rb index 569255f6e..367ba9a83 100644 --- a/app/lib/user_settings_decorator.rb +++ b/app/lib/user_settings_decorator.rb @@ -35,6 +35,7 @@ class UserSettingsDecorator user.settings['skin'] = skin_preference if change?('setting_skin') user.settings['hide_network'] = hide_network_preference if change?('setting_hide_network') user.settings['aggregate_reblogs'] = aggregate_reblogs_preference if change?('setting_aggregate_reblogs') + user.settings['show_application'] = show_application_preference if change?('setting_show_application') end def merged_notification_emails @@ -109,6 +110,10 @@ class UserSettingsDecorator boolean_cast_setting 'setting_hide_network' end + def show_application_preference + boolean_cast_setting 'setting_show_application' + end + def default_language_preference settings['setting_default_language'] end |