mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:47:32 +00:00
fix: import of trigger actions and export of idp links (#4576)
Co-authored-by: Livio Spring <livio.a@gmail.com>
This commit is contained in:
@@ -57,7 +57,7 @@ message DataOrg {
|
||||
repeated DataOIDCApplication oidc_apps = 13;
|
||||
repeated DataHumanUser human_users = 14;
|
||||
repeated DataMachineUser machine_users = 15;
|
||||
repeated zitadel.management.v1.SetTriggerActionsRequest trigger_actions = 16;
|
||||
repeated SetTriggerActionsRequest trigger_actions = 16;
|
||||
repeated DataAction actions = 17;
|
||||
|
||||
repeated DataProjectGrant project_grants = 18;
|
||||
@@ -182,4 +182,22 @@ message DataAction {
|
||||
message DataProjectGrant {
|
||||
string grant_id = 1;
|
||||
zitadel.management.v1.AddProjectGrantRequest project_grant = 2;
|
||||
}
|
||||
}
|
||||
|
||||
message SetTriggerActionsRequest {
|
||||
FlowType flow_type = 1;
|
||||
TriggerType trigger_type = 2;
|
||||
repeated string action_ids = 3;
|
||||
}
|
||||
|
||||
enum FlowType {
|
||||
FLOW_TYPE_UNSPECIFIED = 0;
|
||||
FLOW_TYPE_EXTERNAL_AUTHENTICATION = 1;
|
||||
}
|
||||
|
||||
enum TriggerType {
|
||||
TRIGGER_TYPE_UNSPECIFIED = 0;
|
||||
TRIGGER_TYPE_POST_AUTHENTICATION = 1;
|
||||
TRIGGER_TYPE_PRE_CREATION = 2;
|
||||
TRIGGER_TYPE_POST_CREATION = 3;
|
||||
}
|
||||
|
Reference in New Issue
Block a user