Update apps/server/src/api/v2/users/index.ts

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Nate Kelley 2025-07-16 11:29:31 -06:00 committed by GitHub
parent bbced0d9b8
commit f9252ce149
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ const app = new Hono()
.use('*', requireAuth)
// Mount the modular routes
.route('/', GET)
.route('/', GET_ID)
.route('/:id', GET_ID)
.route('/', POST);
export default app;