Files
Taekwondo-Admin/packages/api/src/middleware/authentication.ts
T
2025-11-01 19:49:12 +01:00

11 lines
247 B
TypeScript

import * as express from 'express';
export async function expressAuthentication(
request: express.Request,
securityName: string,
scopes?: string[]
): Promise<any> {
console.dir({ request, securityName, scopes });
return {};
}