mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 01:37:31 +00:00
feat: custom domain feature (#1618)
* fix: custom domain * fix: custom domain * fix: custom domain * fix: custom domain feature in proto * fix: remove custom domains on feature downgrade * fix test * fix: custom domain feature in proto * ensure tests work Co-authored-by: fabi <fabienne.gerschwiler@gmail.com>
This commit is contained in:
@@ -2188,6 +2188,7 @@ message SetDefaultFeaturesRequest {
|
||||
bool login_policy_passwordless = 10;
|
||||
bool password_complexity_policy = 11;
|
||||
bool label_policy = 12;
|
||||
bool custom_domain = 13;
|
||||
}
|
||||
|
||||
message SetDefaultFeaturesResponse {
|
||||
@@ -2217,6 +2218,7 @@ message SetOrgFeaturesRequest {
|
||||
bool login_policy_passwordless = 11;
|
||||
bool password_complexity_policy = 12;
|
||||
bool label_policy = 13;
|
||||
bool custom_domain = 14;
|
||||
}
|
||||
|
||||
message SetOrgFeaturesResponse {
|
||||
|
@@ -20,6 +20,7 @@ message Features {
|
||||
bool login_policy_passwordless = 9;
|
||||
bool password_complexity_policy = 10;
|
||||
bool label_policy = 11;
|
||||
bool custom_domain = 12;
|
||||
}
|
||||
|
||||
message FeatureTier {
|
||||
|
@@ -597,6 +597,7 @@ service ManagementService {
|
||||
|
||||
option (zitadel.v1.auth_option) = {
|
||||
permission: "org.write"
|
||||
feature: "custom_domain"
|
||||
};
|
||||
}
|
||||
|
||||
@@ -618,6 +619,7 @@ service ManagementService {
|
||||
|
||||
option (zitadel.v1.auth_option) = {
|
||||
permission: "org.write"
|
||||
feature: "custom_domain"
|
||||
};
|
||||
}
|
||||
|
||||
@@ -629,6 +631,7 @@ service ManagementService {
|
||||
|
||||
option (zitadel.v1.auth_option) = {
|
||||
permission: "org.write"
|
||||
feature: "custom_domain"
|
||||
};
|
||||
}
|
||||
|
||||
@@ -639,6 +642,7 @@ service ManagementService {
|
||||
|
||||
option (zitadel.v1.auth_option) = {
|
||||
permission: "org.write"
|
||||
feature: "custom_domain"
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user