mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 14:57:33 +00:00
feat: app handling compliance (#527)
* feat: check oidc compliance * fix: add tests * fix: add oidc config tests * fix: add oidc config tests user agent * fix: test oidc config compliance * fix: test oidc config compliance * fix: useragent implicit authmethod none * fix: merge master * feat: translate compliance problems * feat: check native app for custom url * fix: better compliance handling * fix: better compliance handling * feat: add odidc dev mode * fix: remove deprecated request fro management api * fix: oidc package version * fix: migration * fix: tests * fix: remove unused functions * fix: generate proto files * fix: native implicit and code none compliant * fix: create project * Update internal/project/model/oidc_config_test.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: tests * Update internal/project/model/oidc_config.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/project/model/oidc_config.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: tests Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
@@ -291,3 +291,24 @@ EventTypes:
|
||||
removed: ZITADEL Mitglied entfernt
|
||||
key_pair:
|
||||
added: Schlüsselpaar hinzugefügt
|
||||
Application:
|
||||
OIDC:
|
||||
V1:
|
||||
NotCompliant: Deine Konfiguration ist nicht konform und weicht vom OIDC 1.0 Standard ab.
|
||||
NotAllCombinationsAreAllowed: Die Konfiguration ist konform, jedoch werden nicht alle möglichen Kombinationen erlaubt.
|
||||
Code:
|
||||
RedirectUris:
|
||||
HttpOnlyForWeb: Grant Type Code erlaubt http Redirect Uris nur für den Apptype Web.
|
||||
CustomOnlyForNative: Grant Type Code erlaubt custom Redirect Uris nur für den Apptype Native. (z.B appname:// )
|
||||
Implicit:
|
||||
RedirectUris:
|
||||
CustomNotAllowed: Grant Type Implicit erlaubt keine custom Redirect Uris.
|
||||
HttpNotAllowed: Grant Type Implicit erlaubt keine http Redirect Uris.
|
||||
NativeShouldBeHttpLocalhost: Grant Type Implicit erlaubt beim Apptype Native http nur mit localhost (http://localhost)
|
||||
HttpLocalhostOnlyForNative: Http://localhost Redirect Uri ist nur für Native Applikationen erlaubt.
|
||||
Native:
|
||||
AuthMethodType:
|
||||
NotNone: Bei Native Applikationen sollte der AuthMethodType none sein.
|
||||
UserAgent:
|
||||
AuthMethodType:
|
||||
NotNone: Bei einem User Agent sollte der AuthMethodType none sein.
|
||||
|
Reference in New Issue
Block a user