diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2023-09-11 14:31:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-11 14:31:50 +0900 |
| commit | cd6428715e6780d51e8f6edf93fe7e32bd8f937b (patch) | |
| tree | 3a1ac5a3f7d01f4fa1fbcb29af7c5bd9df0d6581 /packages/backend/src/server/api/endpoints.ts | |
| parent | fix (diff) | |
| download | sharkey-cd6428715e6780d51e8f6edf93fe7e32bd8f937b.tar.gz sharkey-cd6428715e6780d51e8f6edf93fe7e32bd8f937b.tar.bz2 sharkey-cd6428715e6780d51e8f6edf93fe7e32bd8f937b.zip | |
feat: テスト通知を送信できるようにする (#11810)
* (add) Notification test
* Update Changelog
* (add) backend, frontend impl
* globalEventの名前を明確にする
* Run API Extractor
Diffstat (limited to 'packages/backend/src/server/api/endpoints.ts')
| -rw-r--r-- | packages/backend/src/server/api/endpoints.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/backend/src/server/api/endpoints.ts b/packages/backend/src/server/api/endpoints.ts index 3924b43d16..a9cb7c341a 100644 --- a/packages/backend/src/server/api/endpoints.ts +++ b/packages/backend/src/server/api/endpoints.ts @@ -283,6 +283,7 @@ import * as ep___notes_unrenote from './endpoints/notes/unrenote.js'; import * as ep___notes_userListTimeline from './endpoints/notes/user-list-timeline.js'; import * as ep___notifications_create from './endpoints/notifications/create.js'; import * as ep___notifications_markAllAsRead from './endpoints/notifications/mark-all-as-read.js'; +import * as ep___notifications_testNotification from './endpoints/notifications/test-notification.js'; import * as ep___pagePush from './endpoints/page-push.js'; import * as ep___pages_create from './endpoints/pages/create.js'; import * as ep___pages_delete from './endpoints/pages/delete.js'; @@ -627,6 +628,7 @@ const eps = [ ['notes/user-list-timeline', ep___notes_userListTimeline], ['notifications/create', ep___notifications_create], ['notifications/mark-all-as-read', ep___notifications_markAllAsRead], + ['notifications/test-notification', ep___notifications_testNotification], ['page-push', ep___pagePush], ['pages/create', ep___pages_create], ['pages/delete', ep___pages_delete], |