diff options
author | ThibG <thib@sitedethib.com> | 2019-06-26 19:33:04 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-06-26 19:33:04 +0200 |
commit | 3086c645fde2345d34e401bdf3e2f19f19da3294 (patch) | |
tree | ed008141ad3a2b7757c1b70d69419082ac3d4537 /app/serializers | |
parent | 915c619394165a114a4ab316165aecac3386cf2f (diff) |
Add option to disable blurhash previews (#11188)
* Add option to disable blurhash previews * Update option text * Change options order
Diffstat (limited to 'app/serializers')
-rw-r--r-- | app/serializers/initial_state_serializer.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/serializers/initial_state_serializer.rb b/app/serializers/initial_state_serializer.rb index 8daf36e0a..54f99d570 100644 --- a/app/serializers/initial_state_serializer.rb +++ b/app/serializers/initial_state_serializer.rb @@ -32,6 +32,7 @@ class InitialStateSerializer < ActiveModel::Serializer store[:expand_spoilers] = object.current_account.user.setting_expand_spoilers store[:reduce_motion] = object.current_account.user.setting_reduce_motion store[:advanced_layout] = object.current_account.user.setting_advanced_layout + store[:use_blurhash] = object.current_account.user.setting_use_blurhash store[:is_staff] = object.current_account.user.staff? end |