feat(oidc): add clock skew and userinfo claims in ID Token (#1022)

* feat: add clock skew

* add IDTokenUserinfoAssertion

* migration

* fix missing converter

* update oidc version

* fix interface impl
This commit is contained in:
Livio Amstutz
2020-11-27 14:10:52 +01:00
committed by GitHub
parent 2cd6da361a
commit 2331b8a4c0
11 changed files with 221 additions and 156 deletions

View File

@@ -0,0 +1,7 @@
ALTER TABLE management.applications ADD COLUMN id_token_userinfo_assertion BOOLEAN;
ALTER TABLE auth.applications ADD COLUMN id_token_userinfo_assertion BOOLEAN;
ALTER TABLE authz.applications ADD COLUMN id_token_userinfo_assertion BOOLEAN;
ALTER TABLE management.applications ADD COLUMN clock_skew BIGINT;
ALTER TABLE auth.applications ADD COLUMN clock_skew BIGINT;
ALTER TABLE authz.applications ADD COLUMN clock_skew BIGINT;