feat(editor): Add SSO fakedoor feature (#5076)

* feat: add sso fakedoor feature

* fix: update SSO fakeDoor location

* fix: remove unused code
This commit is contained in:
Alex Grozav
2023-01-03 16:09:11 +02:00
committed by GitHub
parent 8cf3c86860
commit 8e8df6d611
5 changed files with 31 additions and 4 deletions

View File

@@ -1187,7 +1187,11 @@ export type IFakeDoor = {
uiLocations: IFakeDoorLocation[];
};
export type IFakeDoorLocation = 'settings' | 'credentialsModal' | 'workflowShareModal';
export type IFakeDoorLocation =
| 'settings'
| 'settings/users'
| 'credentialsModal'
| 'workflowShareModal';
export type INodeFilterType = 'Regular' | 'Trigger' | 'All';