diff options
Diffstat (limited to 'server/app.controller.ts')
-rw-r--r-- | server/app.controller.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/app.controller.ts b/server/app.controller.ts index a6bcf58..53c975f 100644 --- a/server/app.controller.ts +++ b/server/app.controller.ts @@ -1,8 +1,11 @@ import { Controller, Get, Render } from '@nestjs/common'; +import { Skip } from './decorators/skip.decorator'; +import { AuthGuard } from './providers/guards/auth.guard'; @Controller() export class AppController { @Get() @Render('index') + @Skip(AuthGuard) index() {} } |