summaryrefslogtreecommitdiff
path: root/src/app/api/comments
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/api/comments')
-rw-r--r--src/app/api/comments/[...comment]/route.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/app/api/comments/[...comment]/route.ts b/src/app/api/comments/[...comment]/route.ts
deleted file mode 100644
index 1da87db..0000000
--- a/src/app/api/comments/[...comment]/route.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import { auth, storage } from '@/server/comments/config';
-import { NextComment } from '@fuma-comment/server/next';
-
-export const { GET, DELETE, PATCH, POST } = NextComment({
- // role: 'database', todo use role in auth
- mention: { enabled: true },
- auth: auth,
- storage: storage,
-});