Merge pull request #319 from Hexastack/318-issue-remove-unused-endpoint

fix: remove unused endpoints
This commit is contained in:
Med Marrouchi 2024-11-06 11:07:26 +01:00 committed by GitHub
commit c26d558d06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,21 +6,13 @@
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file). * 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
*/ */
import { import { Controller, Get, Req, Session } from '@nestjs/common';
BadRequestException,
Controller,
Get,
Req,
Res,
Session,
} from '@nestjs/common';
import { CsrfCheck, CsrfGenAuth } from '@tekuconcept/nestjs-csrf'; import { CsrfCheck, CsrfGenAuth } from '@tekuconcept/nestjs-csrf';
import { CsrfGenerator } from '@tekuconcept/nestjs-csrf/dist/csrf.generator'; import { CsrfGenerator } from '@tekuconcept/nestjs-csrf/dist/csrf.generator';
import { Request, Response } from 'express'; import { Request } from 'express';
import { Session as ExpressSession } from 'express-session'; import { Session as ExpressSession } from 'express-session';
import { AppService } from './app.service'; import { AppService } from './app.service';
import { config } from './config';
import { LoggerService } from './logger/logger.service'; import { LoggerService } from './logger/logger.service';
import { Roles } from './utils/decorators/roles.decorator'; import { Roles } from './utils/decorators/roles.decorator';
@ -53,20 +45,6 @@ export class AppController {
@Get('__getcookie') @Get('__getcookie')
cookies(@Req() req: Request): string { cookies(@Req() req: Request): string {
req.session.anonymous = true; req.session.anonymous = true;
return '_sailsIoJSConnect();'; return '';
}
// @TODO : remove once old frontend is abandoned
@Get('logout')
logout(@Req() req: Request, @Res({ passthrough: true }) res: Response) {
res.clearCookie(config.session.name);
req.session.destroy((error) => {
if (error) {
this.logger.error(error);
throw new BadRequestException();
}
});
return { status: 'ok' };
} }
} }