We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d44e380 commit 0ec7bacCopy full SHA for 0ec7bac
apps/web-app/server/api/tilda/fila.post.ts
@@ -0,0 +1,15 @@
1
+export default defineEventHandler(async (event) => {
2
+ try {
3
+ const logger = useLogger('api:tilda:fila')
4
+
5
+ const body = await readBody(event)
6
7
+ logger.success(JSON.stringify(body, null, 2))
8
9
+ return {
10
+ ok: true,
11
+ }
12
+ } catch (error) {
13
+ throw errorResolver(error)
14
15
+})
apps/web-app/server/middleware/01.auth.ts
@@ -11,6 +11,7 @@ const routesWithoutAuth = [
'/api/beacon/epic/comment',
'/api/cuid', // public
'/api/qr', // public
+ '/api/tilda/fila', // public
]
16
17
/**
0 commit comments