feat: Lockout policy feature (#2341)

* feat: add lockoutpolicy feature

* feat: add tests

* fix: err handling
This commit is contained in:
Fabi
2021-09-09 15:42:28 +02:00
committed by GitHub
parent 257bf90f7e
commit 59e393728e
20 changed files with 165 additions and 8 deletions

View File

@@ -2615,6 +2615,7 @@ message SetDefaultFeaturesRequest {
bool metadata_user = 19;
bool custom_text_message = 20;
bool custom_text_login = 21;
bool lockout_policy = 22;
}
message SetDefaultFeaturesResponse {
@@ -2653,6 +2654,7 @@ message SetOrgFeaturesRequest {
bool metadata_user = 20;
bool custom_text_message = 21;
bool custom_text_login = 22;
bool lockout_policy = 23;
}
message SetOrgFeaturesResponse {

View File

@@ -29,6 +29,7 @@ message Features {
bool metadata_user = 18;
bool custom_text_message = 19;
bool custom_text_login = 20;
bool lockout_policy = 21;
}
message FeatureTier {