From 732166450e150bd3541e9e11b97712dc6ca80f6f Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Tue, 8 Jan 2019 12:52:09 -0800 Subject: [PATCH] Add `projectName` member of StackSummary API type This will allow the service to include information about what project a stack is assocated with when listing all stacks a user has access to. This was not previously needed because the project did not play into the stack identity, but it will shortly. --- pkg/apitype/stacks.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/apitype/stacks.go b/pkg/apitype/stacks.go index 34d70f412..d1503da13 100644 --- a/pkg/apitype/stacks.go +++ b/pkg/apitype/stacks.go @@ -18,6 +18,8 @@ package apitype type StackSummary struct { // OrgName is the organization name the stack is found in. OrgName string `json:"orgName"` + // ProjectName is the name of the project the stack is associated with. + ProjectName string `json:"projectName"` // StackName is the name of the stack. StackName string `json:"stackName"`