about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/local_settings.js
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-05-27 16:34:29 +0200
committerGitHub <noreply@github.com>2022-05-27 16:34:29 +0200
commit53c89ee44b9d5cb22553d8e602777084d146749a (patch)
tree86bfa20c00d29483c0e95ac6ba22fa2b3794aec4 /app/javascript/flavours/glitch/reducers/local_settings.js
parent6dd7180f056666d837bf71798f866db31f11f6d4 (diff)
Add language indicator icon and local settings for status icons (#1788)
* Add language indicator

* Add local settings for status icons

* Switch to text icon for language
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/local_settings.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/local_settings.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/reducers/local_settings.js b/app/javascript/flavours/glitch/reducers/local_settings.js
index a16c337fc..d4cdc124f 100644
--- a/app/javascript/flavours/glitch/reducers/local_settings.js
+++ b/app/javascript/flavours/glitch/reducers/local_settings.js
@@ -54,6 +54,13 @@ const initialState = ImmutableMap({
     favicon_badge : false,
     tab_badge     : true,
   }),
+  status_icons : ImmutableMap({
+    language:   true,
+    reply:      true,
+    local_only: true,
+    media:      true,
+    visibility: true,
+  }),
 });
 
 const hydrate = (state, localSettings) => state.mergeDeep(localSettings);