未読の投稿をすべて既読にできるように

This commit is contained in:
syuilo
2018-10-19 06:36:59 +09:00
parent 00290fbf75
commit fb5f6fdc10
2 changed files with 42 additions and 0 deletions

View File

@ -169,6 +169,9 @@
%i18n:@auto-watch%
<span slot="desc">%i18n:@auto-watch-desc%</span>
</ui-switch>
<section>
<ui-button @click="readAllUnreadNotes">%i18n:@mark-as-read-all-unread-notes%</ui-button>
</section>
</section>
</ui-card>
@ -488,6 +491,9 @@ export default Vue.extend({
});
},
methods: {
readAllUnreadNotes() {
(this as any).api('i/read_all_unread_notes');
},
customizeHome() {
this.$router.push('/i/customize-home');
this.$emit('done');