11 lines
247 B
TypeScript
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 {};
|
|
}
|