From 1353ebc3abf34c8767bf776e618361b870145bca Mon Sep 17 00:00:00 2001 From: Nathaniel Allred Date: Tue, 3 Jan 2023 08:36:23 -0600 Subject: [PATCH] Mm 49258 - Inform admins trying to self-hosted purchase who the email listed on the JWT claim is (#21964) * add email of JWT claim to bootstrap signup response --- model/hosted_customer.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/model/hosted_customer.go b/model/hosted_customer.go index 0e1373a2bc..4f1917bdaf 100644 --- a/model/hosted_customer.go +++ b/model/hosted_customer.go @@ -10,6 +10,8 @@ type BootstrapSelfHostedSignupRequest struct { type BootstrapSelfHostedSignupResponse struct { Progress string `json:"progress"` + // email listed on the JWT claim + Email string `json:"email"` } type BootstrapSelfHostedSignupResponseInternal struct {