diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-07-16 06:30:47 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-07-16 16:11:50 +0200 |
commit | 729723f857d11434c0f78d63fe16537d77f1c77c (patch) | |
tree | 9d6518b6ac1d4a5e54d09d214bc7e2a5bbd0ff4b /app/models | |
parent | 3598305460bdafe42585191790a9a9e987c8b978 (diff) |
Add option to disable real-time updates in web UI (#9984)
Fix #9031 Fix #7913
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/user.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 9bc3dd608..bb903a45c 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -106,7 +106,7 @@ class User < ApplicationRecord delegate :auto_play_gif, :default_sensitive, :unfollow_modal, :boost_modal, :favourite_modal, :delete_modal, :reduce_motion, :system_font_ui, :noindex, :flavour, :skin, :display_media, :hide_network, :hide_followers_count, :expand_spoilers, :default_language, :aggregate_reblogs, :show_application, - :advanced_layout, :default_content_type, :use_blurhash, to: :settings, prefix: :setting, allow_nil: false + :advanced_layout, :default_content_type, :use_blurhash, :use_pending_items, to: :settings, prefix: :setting, allow_nil: false attr_reader :invite_code attr_writer :external |