New menu item mark conversation as read

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
This commit is contained in:
Vincent Petry 2021-03-02 09:28:19 +01:00
Родитель 30285b0bf1
Коммит 9374c25b6d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E055D6A4D513575C
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -57,6 +57,11 @@
@click.stop.prevent="copyLinkToConversation">
{{ t('spreed', 'Copy link') }}
</ActionButton>
<ActionButton
:close-after-click="true"
@click.prevent.exact="markConversationAsRead">
{{ t('spreed', 'Mark as read') }}
</ActionButton>
<ActionSeparator />
@ -313,6 +318,10 @@ export default {
}
},
markConversationAsRead() {
this.$store.dispatch('clearLastReadMessage', { token: this.item.token })
},
/**
* Deletes the conversation.
*/