Compare commits

...

2 commits

Author SHA1 Message Date
Christopher (Cris) Fuhrman
7e9c78fd93
Merge pull request #273 from ets-cfuhrman-pfe/debug-oidc-1
Some checks failed
CI/CD Pipeline for Backend / build_and_push_backend (push) Failing after 18s
CI/CD Pipeline for Nginx Router / build_and_push_nginx (push) Failing after 18s
CI/CD Pipeline for Frontend / build_and_push_frontend (push) Failing after 18s
Tests / lint-and-tests (client) (push) Failing after 59s
Tests / lint-and-tests (server) (push) Failing after 1m9s
order of init
2025-03-04 14:52:55 -05:00
C. Fuhrman
fd160aaba7 order of init 2025-03-04 14:47:44 -05:00

View file

@ -14,8 +14,8 @@ class AuthManager{
this.configs = configs ?? (new AuthConfig()).loadConfig()
this.addModules()
this.registerAuths()
this.simpleregister = userModel;
this.registerAuths()
}
getUserModel(){
@ -41,6 +41,7 @@ class AuthManager{
}
async registerAuths(){
console.log(``);
for(const module of this.modules){
try{
module.registerAuth(this.app, this.simpleregister);