summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/pages/settings/notifications.vue15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/client/pages/settings/notifications.vue b/src/client/pages/settings/notifications.vue
index 0b709a504b..ff0c276398 100644
--- a/src/client/pages/settings/notifications.vue
+++ b/src/client/pages/settings/notifications.vue
@@ -4,15 +4,6 @@
<MkButton full primary @click="configure"><Fa :icon="faCog"/> {{ $t('notificationSetting') }}</MkButton>
</div>
<div class="_section">
- <div class="_card">
- <div class="_content">
- <MkSwitch v-model:value="$store.state.i.autoWatch" @update:value="onChangeAutoWatch">
- {{ $t('autoNoteWatch') }}<template #desc>{{ $t('autoNoteWatchDescription') }}</template>
- </MkSwitch>
- </div>
- </div>
- </div>
- <div class="_section">
<MkButton full @click="readAllNotifications">{{ $t('markAsReadAllNotifications') }}</MkButton>
<MkButton full @click="readAllUnreadNotes">{{ $t('markAsReadAllUnreadNotes') }}</MkButton>
<MkButton full @click="readAllMessagingMessages">{{ $t('markAsReadAllTalkMessages') }}</MkButton>
@@ -52,12 +43,6 @@ export default defineComponent({
},
methods: {
- onChangeAutoWatch(v) {
- os.api('i/update', {
- autoWatch: v
- });
- },
-
readAllUnreadNotes() {
os.api('i/read-all-unread-notes');
},