diff options
| author | Mohamed Bassem <me@mbassem.com> | 2024-10-20 14:29:11 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2024-10-20 14:29:11 +0000 |
| commit | 719e25d8254fd9ab2516f5faf6d2f07af4257792 (patch) | |
| tree | c44a68323b41fd465ddad754f28d91d38ba9c682 /apps/web/app/api/v1/lists | |
| parent | 62395ecbbfef38686073369443d99249421b2e22 (diff) | |
| download | karakeep-719e25d8254fd9ab2516f5faf6d2f07af4257792.tar.zst | |
feature: Add DELETE REST APIs for bookmarks, lists and tags
Diffstat (limited to 'apps/web/app/api/v1/lists')
| -rw-r--r-- | apps/web/app/api/v1/lists/[listId]/route.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/web/app/api/v1/lists/[listId]/route.ts b/apps/web/app/api/v1/lists/[listId]/route.ts index 205a779f..d3e1f17c 100644 --- a/apps/web/app/api/v1/lists/[listId]/route.ts +++ b/apps/web/app/api/v1/lists/[listId]/route.ts @@ -31,3 +31,19 @@ export const GET = ( }; }, }); + +export const DELETE = ( + req: NextRequest, + { params }: { params: { listId: string } }, +) => + buildHandler({ + req, + handler: async ({ api }) => { + await api.lists.delete({ + listId: params.listId, + }); + return { + status: 204, + }; + }, + }); |
