refactor(backend): File has too many classes

This commit is contained in:
Tibo De Peuter 2025-03-23 11:31:48 +01:00
parent 25f9eb2af2
commit 5b31cec5fe
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
15 changed files with 87 additions and 67 deletions

View file

@ -6,7 +6,8 @@ import jwksClient from 'jwks-rsa';
import * as express from 'express';
import { AuthenticatedRequest } from './authenticated-request.js';
import { AuthenticationInfo } from './authentication-info.js';
import { ForbiddenException, UnauthorizedException } from '../../exceptions.js';
import { UnauthorizedException } from '../../exceptions/unauthorizedException.js';
import { ForbiddenException } from '../../exceptions/forbiddenException.js';
const JWKS_CACHE = true;
const JWKS_RATE_LIMIT = true;