diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-09-22 21:05:42 +0200 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-09-22 21:05:42 +0200 |
| commit | feec3c302b893e28c4862fb44a7ad4455d30cf85 (patch) | |
| tree | 860d2a153171b8a65aa1d00cd856370e1aee1451 /packages/backend/src/server/api/endpoints.ts | |
| parent | merge: develop branch (diff) | |
| download | sharkey-feec3c302b893e28c4862fb44a7ad4455d30cf85.tar.gz sharkey-feec3c302b893e28c4862fb44a7ad4455d30cf85.tar.bz2 sharkey-feec3c302b893e28c4862fb44a7ad4455d30cf85.zip | |
upd: add backend for post editing
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 ab20a708ef..208bffeb6b 100644 --- a/packages/backend/src/server/api/endpoints.ts +++ b/packages/backend/src/server/api/endpoints.ts @@ -282,6 +282,7 @@ import * as ep___notes_timeline from './endpoints/notes/timeline.js'; import * as ep___notes_translate from './endpoints/notes/translate.js'; 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___notes_edit from './endpoints/notes/edit.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'; @@ -628,6 +629,7 @@ const eps = [ ['notes/translate', ep___notes_translate], ['notes/unrenote', ep___notes_unrenote], ['notes/user-list-timeline', ep___notes_userListTimeline], + ['notes/edit', ep___notes_edit], ['notifications/create', ep___notifications_create], ['notifications/mark-all-as-read', ep___notifications_markAllAsRead], ['notifications/test-notification', ep___notifications_testNotification], |