Compare commits

..

No commits in common. "d597734467aacf9c1471f20817804d8358fdefad" and "50ac2d97a4875dae4fe155863ba0517c49eba394" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { Body, Controller, Delete, Post } from '@nestjs/common';
import { ExcludePrivilege, Public } from 'src/core/guards';
import { Public } from 'src/core/guards';
import { AuthOrchestrator } from '../domain/auth.orchestrator';
import { ApiBearerAuth } from '@nestjs/swagger';
import { LoginDto } from './dto/login.dto';
@ -16,7 +16,6 @@ export class AuthController {
@ApiBearerAuth('JWT')
@Public(false)
@ExcludePrivilege()
@Delete('logout')
async logoout() {
return await this.orchestrator.logout();