mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
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
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
This commit is contained in:
commit
7e9c78fd93
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue