SSO (#84)
* feat(api): remove stage name from email subject * change(api): refactored code & SAML2 SSO SLO SLS * change(api): SAML2 extracted & custom configuration * change(api): SAML2 migrate user after signup * feat(api): return project_key with session's details * change(api): SAML2 * feat(db): tenants & users table changes for SAML2 * feat(db): changed delta between FOS and EE
This commit is contained in:
parent
9a5fc4bac7
commit
7fe1404cb4
1 changed files with 6 additions and 0 deletions
6
ee/scripts/helm/db/init_dbs/postgresql/1.2.0/1.2.0.sql
Normal file
6
ee/scripts/helm/db/init_dbs/postgresql/1.2.0/1.2.0.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
BEGIN;
|
||||
CREATE TYPE user_origin AS ENUM ('saml');
|
||||
ALTER TABLE public.users
|
||||
ADD COLUMN origin user_origin NULL DEFAULT NULL,
|
||||
ADD COLUMN internal_id text NULL DEFAULT NULL;
|
||||
COMMIT;
|
||||
Loading…
Add table
Reference in a new issue