summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api/endpoints.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-03-16 17:24:49 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-03-16 17:24:49 +0900
commitb644567735443ae203f78dbdbe1963c252ceb1ad (patch)
tree23a08ea860a7e856e419082cb0101bab45d54a34 /packages/backend/src/server/api/endpoints.ts
parentenhance: カスタム絵文字にライセンス情報を付与できるよ... (diff)
downloadsharkey-b644567735443ae203f78dbdbe1963c252ceb1ad.tar.gz
sharkey-b644567735443ae203f78dbdbe1963c252ceb1ad.tar.bz2
sharkey-b644567735443ae203f78dbdbe1963c252ceb1ad.zip
feat: clip favorite
Resolve #10337
Diffstat (limited to 'packages/backend/src/server/api/endpoints.ts')
-rw-r--r--packages/backend/src/server/api/endpoints.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/backend/src/server/api/endpoints.ts b/packages/backend/src/server/api/endpoints.ts
index 58f4fcc8a8..e928b0c2b1 100644
--- a/packages/backend/src/server/api/endpoints.ts
+++ b/packages/backend/src/server/api/endpoints.ts
@@ -114,6 +114,9 @@ import * as ep___clips_list from './endpoints/clips/list.js';
import * as ep___clips_notes from './endpoints/clips/notes.js';
import * as ep___clips_show from './endpoints/clips/show.js';
import * as ep___clips_update from './endpoints/clips/update.js';
+import * as ep___clips_favorite from './endpoints/clips/favorite.js';
+import * as ep___clips_unfavorite from './endpoints/clips/unfavorite.js';
+import * as ep___clips_myFavorites from './endpoints/clips/my-favorites.js';
import * as ep___drive from './endpoints/drive.js';
import * as ep___drive_files from './endpoints/drive/files.js';
import * as ep___drive_files_attachedNotes from './endpoints/drive/files/attached-notes.js';
@@ -436,6 +439,9 @@ const eps = [
['clips/notes', ep___clips_notes],
['clips/show', ep___clips_show],
['clips/update', ep___clips_update],
+ ['clips/favorite', ep___clips_favorite],
+ ['clips/unfavorite', ep___clips_unfavorite],
+ ['clips/my-favorites', ep___clips_myFavorites],
['drive', ep___drive],
['drive/files', ep___drive_files],
['drive/files/attached-notes', ep___drive_files_attachedNotes],