Fixed issues stemming from mismatch between code and new dependency version
All checks were successful
All checks were successful
This commit is contained in:
parent
98d68c6edc
commit
2fa68b6cb6
2 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ba-website",
|
||||
"version": "1.0.20",
|
||||
"version": "1.0.21",
|
||||
"description": "The Bridgeman Accessible main website",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue