diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-11-08 16:49:23 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-11-08 16:49:23 +0900 |
| commit | 9d1fa3f20259cf7c303d49d5aae8e1fecdafc7ed (patch) | |
| tree | 9bae26e351d3cc849b8f38823a3907e9e6b87d13 /src/client | |
| parent | Fix #6819 (diff) | |
| download | misskey-9d1fa3f20259cf7c303d49d5aae8e1fecdafc7ed.tar.gz misskey-9d1fa3f20259cf7c303d49d5aae8e1fecdafc7ed.tar.bz2 misskey-9d1fa3f20259cf7c303d49d5aae8e1fecdafc7ed.zip | |
autoWatch機能を削除
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/pages/settings/notifications.vue | 15 |
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'); }, |