summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-11-08 16:49:23 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-11-08 16:49:23 +0900
commit9d1fa3f20259cf7c303d49d5aae8e1fecdafc7ed (patch)
tree9bae26e351d3cc849b8f38823a3907e9e6b87d13 /src/client
parentFix #6819 (diff)
downloadmisskey-9d1fa3f20259cf7c303d49d5aae8e1fecdafc7ed.tar.gz
misskey-9d1fa3f20259cf7c303d49d5aae8e1fecdafc7ed.tar.bz2
misskey-9d1fa3f20259cf7c303d49d5aae8e1fecdafc7ed.zip
autoWatch機能を削除
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');
},