From b7aa013a41a56992da338181bdebd60ce99165b4 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Tue, 3 Jun 2025 21:06:37 +0900 Subject: feat: 全てのチャットメッセージを既読にできるように MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/pages/settings/other.vue | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'packages/frontend/src/pages/settings') diff --git a/packages/frontend/src/pages/settings/other.vue b/packages/frontend/src/pages/settings/other.vue index f09cc9c9bc..9459a9b326 100644 --- a/packages/frontend/src/pages/settings/other.vue +++ b/packages/frontend/src/pages/settings/other.vue @@ -128,6 +128,10 @@ SPDX-License-Identifier: AGPL-3.0-only
+ Read all chat messages + +
+ {{ i18n.ts.migrateOldSettings }} @@ -214,6 +218,10 @@ function hideAllTips() { os.success(); } +function readAllChatMessages() { + os.apiWithDialog('chat/read-all', {}); +} + const headerActions = computed(() => []); const headerTabs = computed(() => []); -- cgit v1.2.3-freya