15 lines
564 B
TypeScript
15 lines
564 B
TypeScript
import { ExceptionFilter, Catch, ArgumentsHost } from '@nestjs/common';
|
|
import { Response } from 'express';
|
|
import { NotEnoughScopes } from '@gitroom/nestjs-libraries/integrations/social.abstract';
|
|
import { HttpStatusCode } from 'axios';
|
|
|
|
@Catch(NotEnoughScopes)
|
|
export class NotEnoughScopesFilter implements ExceptionFilter {
|
|
catch(exception: NotEnoughScopes, host: ArgumentsHost) {
|
|
const ctx = host.switchToHttp();
|
|
const response = ctx.getResponse<Response>();
|
|
|
|
response.status(HttpStatusCode.NotAcceptable).json({ msg: exception.message });
|
|
}
|
|
}
|