OIDC & store fixes (#358)

* fix: typos

* fix: platform filtering

* feat: fix tags and create option
This commit is contained in:
DecDuck
2026-02-26 22:15:19 +00:00
committed by GitHub
parent 768a4e2414
commit 7fa02c57d1
6 changed files with 138 additions and 27 deletions
+2 -2
View File
@@ -153,14 +153,14 @@ export class OIDCManager {
this.JWKS = jose.createRemoteJWKSet(this.oidcConfiguration.jwks_uri);
this.redirectUrl = new URL(
`${this.externalUrl.toString()}api/v1/auth/odic/callback`,
`${this.externalUrl.toString()}api/v1/auth/oidc/callback`,
);
}
static async create() {
if (!systemConfig.shouldOidcRequireHttps()) {
console.warn(
"Disabling HTTPS requirement for ODIC provider, not recommened in production enviroments",
"Disabling HTTPS requirement for OIDC provider, not recommened in production enviroments",
);
}