diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-06-08 14:09:32 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-06-08 14:09:32 +0900 |
| commit | 6b312f755eb171df0afd95a2d4e51cfd7300fa16 (patch) | |
| tree | 261024105325dd0ca8ad36d1315cc705a5ae25ef /src/server/api/endpoints/notifications | |
| parent | 外部リンクアイコンが表示されない問題を修正 (diff) | |
| download | sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.gz sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.bz2 sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.zip | |
Remove endpoint descriptions
#6627
Diffstat (limited to 'src/server/api/endpoints/notifications')
| -rw-r--r-- | src/server/api/endpoints/notifications/create.ts | 4 | ||||
| -rw-r--r-- | src/server/api/endpoints/notifications/mark-all-as-read.ts | 5 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/server/api/endpoints/notifications/create.ts b/src/server/api/endpoints/notifications/create.ts index e447a32e0b..6267699e90 100644 --- a/src/server/api/endpoints/notifications/create.ts +++ b/src/server/api/endpoints/notifications/create.ts @@ -3,10 +3,6 @@ import define from '../../define'; import { createNotification } from '../../../../services/create-notification'; export const meta = { - desc: { - 'ja-JP': '通知を作成します。' - }, - tags: ['notifications'], requireCredential: true as const, diff --git a/src/server/api/endpoints/notifications/mark-all-as-read.ts b/src/server/api/endpoints/notifications/mark-all-as-read.ts index a17a3e7216..cce54587c7 100644 --- a/src/server/api/endpoints/notifications/mark-all-as-read.ts +++ b/src/server/api/endpoints/notifications/mark-all-as-read.ts @@ -3,11 +3,6 @@ import define from '../../define'; import { Notifications } from '../../../../models'; export const meta = { - desc: { - 'ja-JP': '全ての通知を既読にします。', - 'en-US': 'Mark all notifications as read.' - }, - tags: ['notifications', 'account'], requireCredential: true as const, |