From bd1bfb8d6a015fff32d850a9bc89aeb3c9ca260c Mon Sep 17 00:00:00 2001 From: Sergey Passichenko Date: Tue, 28 May 2024 14:32:25 -0700 Subject: [PATCH] support passing domain name when creating a team (#410) `domain_name` could be used to support automatic membership based on the domain name of the email --- proto/lekko/bff/v1beta1/bff.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/lekko/bff/v1beta1/bff.proto b/proto/lekko/bff/v1beta1/bff.proto index dc3718aa..b2971c99 100644 --- a/proto/lekko/bff/v1beta1/bff.proto +++ b/proto/lekko/bff/v1beta1/bff.proto @@ -217,6 +217,7 @@ message UpdateAPIKeyScopesResponse {} message CreateTeamRequest { string name = 1; + string domain_name = 2; } message CreateTeamResponse {