about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/settings.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-02-11 22:20:19 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-02-12 13:15:07 +0100
commit958089fb21e09a8e2b6bf963ef014ae754601882 (patch)
tree51812c56ef9163b178725c4a34050f7df5aa62ec /app/javascript/flavours/glitch/reducers/settings.js
parentd9379f53312f1bee490afb0fd7dc368df1a4a96d (diff)
[Glitch] Add notifications when a reblogged status has been updated
Port front-end changes from 8f03b7a2fb4b420eb46942157160816185e81751 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/settings.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/settings.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/reducers/settings.js b/app/javascript/flavours/glitch/reducers/settings.js
index a53d34a83..48587ce64 100644
--- a/app/javascript/flavours/glitch/reducers/settings.js
+++ b/app/javascript/flavours/glitch/reducers/settings.js
@@ -40,6 +40,7 @@ const initialState = ImmutableMap({
       mention: false,
       poll: false,
       status: false,
+      update: false,
     }),
 
     quickFilter: ImmutableMap({
@@ -59,6 +60,7 @@ const initialState = ImmutableMap({
       mention: true,
       poll: true,
       status: true,
+      update: true,
     }),
 
     sounds: ImmutableMap({
@@ -69,6 +71,7 @@ const initialState = ImmutableMap({
       mention: true,
       poll: true,
       status: true,
+      update: true,
     }),
   }),