You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
import type { MiddlewareHandle } from 'express-knifey';
|
|
|
|
export const SWISSOID_MIDDLEWARE = {
|
|
oidcStandardRoutes: {
|
|
name: 'oidcStandardRoutesMiddleware',
|
|
defaultPriority: 50,
|
|
defaultPath: '*',
|
|
} satisfies MiddlewareHandle,
|
|
} as const;
|
|
|
|
export type SwissoidMiddlewareHandle = typeof SWISSOID_MIDDLEWARE[keyof typeof SWISSOID_MIDDLEWARE];
|