Fixed issues stemming from mismatch between code and new dependency version
All checks were successful
Build and deploy Main Bridgeman Accessible website to QA/Stagging (private Kubernetes cluster) / build (push) Successful in 1m52s
Build and deploy Main Bridgeman Accessible website to QA/Stagging (private Kubernetes cluster) / deploy (push) Successful in 18s

This commit is contained in:
Alan Bridgeman 2025-06-10 15:11:20 -05:00
parent 98d68c6edc
commit 2fa68b6cb6
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ const domain = process.env.DOMAIN || 'localhost';
*
* @param app The Express app that gets created/started.
*/
function onStart(app: Application) {
function onStart(app: App) {
// Currently within the Server class implementation,
// which is then implemented by the accounts dashboard,
// only the RFC8414 path/callback is setup by default
@ -18,7 +18,7 @@ function onStart(app: Application) {
// this should be easy enough to change but don't want to fiddle with it right now
//const oidcLink = PointerServer.createOIDCLink('account.bridgemanaccessible.ca');
const rfc8414Link = PointerServer.createRFC8414Link('account.bridgemanaccessible.ca');
PointerServer.setup(app, { links: [/*oidcLink, */rfc8414Link] });
PointerServer.setup(app.getExpressApp(), { links: [/*oidcLink, */rfc8414Link] });
}
async function main() {