Skip to content

Commit

Permalink
wip: trying to make the route public
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonbrito committed Aug 20, 2024
1 parent 6e6a1dd commit 43c5806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/user/user-routes.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { UserRoutes } from './user-routes'
export class UserRoutesModule implements NestModule {
configure (consumer: MiddlewareConsumer): void {
consumer
.apply(AuthNestMiddleware)
.apply()
.forRoutes({ path: '/user/signup/email', method: RequestMethod.POST })
.apply(AuthNestMiddleware)
.forRoutes({ path: '/user', method: RequestMethod.POST })
Expand Down

0 comments on commit 43c5806

Please sign in to comment.