Stores the HTML templates associated with specific InteractionRoutes. Template keys should be file paths to the templates, values should be the corresponding routes.

Will only handle GET operations for which there is a matching template if HTML is more preferred than JSON. Reason for doing it like this instead of a standard content negotiation flow is because we only want to return the HTML pages on GET requests. *

Templates will receive the parameter idpIndex in their context pointing to the root index URL of the IDP API and an authenticating parameter indicating if this is an active OIDC interaction.

Hierarchy

Constructors

Properties

idpIndex: string
templateEngine: TemplateEngine<Dict<any>>
templates: Record<string, string>

Methods