Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - app/controllers/settings/preferences_controller.rb - app/lib/user_settings_decorator.rb - app/models/user.rb - config/locales/simple_form.en.yml
This commit is contained in:
commit
aaec64a500
24 changed files with 309 additions and 148 deletions
|
@ -38,6 +38,7 @@ class UserSettingsDecorator
|
|||
user.settings['show_application'] = show_application_preference if change?('setting_show_application')
|
||||
user.settings['advanced_layout'] = advanced_layout_preference if change?('setting_advanced_layout')
|
||||
user.settings['default_content_type']= default_content_type_preference if change?('setting_default_content_type')
|
||||
user.settings['use_blurhash'] = use_blurhash_preference if change?('setting_use_blurhash')
|
||||
end
|
||||
|
||||
def merged_notification_emails
|
||||
|
@ -132,6 +133,10 @@ class UserSettingsDecorator
|
|||
settings['setting_default_content_type']
|
||||
end
|
||||
|
||||
def use_blurhash_preference
|
||||
boolean_cast_setting 'setting_use_blurhash'
|
||||
end
|
||||
|
||||
def boolean_cast_setting(key)
|
||||
ActiveModel::Type::Boolean.new.cast(settings[key])
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue