summaryrefslogtreecommitdiff
path: root/server/app.controller.ts
blob: 53c975f8b9c9f1c8d2928525f02ead5278a69dcc (plain)
1
2
3
4
5
6
7
8
9
10
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() {}
}