Attempting to fix issue with WebFinger implementation where route mistakenly gives 404
All checks were successful
Build and deploy Main Bridgeman Accessible website to QA/Stagging (private Kubernetes cluster) / build (push) Successful in 1m59s
Build and deploy Main Bridgeman Accessible website to QA/Stagging (private Kubernetes cluster) / deploy (push) Successful in 16s

This commit is contained in:
Alan Bridgeman 2025-06-19 21:33:11 -05:00
parent a439ec483a
commit ab8af728b4
2 changed files with 2 additions and 1 deletions

View file

@ -19,6 +19,7 @@ function onStart(app: App) {
//const oidcLink = PointerServer.createOIDCLink('account.bridgemanaccessible.ca');
const rfc8414Link = PointerServer.createRFC8414Link('account.bridgemanaccessible.ca');
PointerServer.setup(app.getExpressApp(), { links: [/*oidcLink, */rfc8414Link] });
app.getInitializer().getRouter().addOutsideFrameworkRoute('/.well-known/webfinger');
}
async function main() {