Skip to content

Commit 2b7e74e

Browse files
committedJan 15, 2025
Update workload retrieval to include environment context for applications and jobs
1 parent 14a1263 commit 2b7e74e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎internal/graph/secret.resolvers.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,14 +178,14 @@ func (r *secretResolver) Workloads(ctx context.Context, obj *secret.Secret, firs
178178

179179
ret := make([]workload.Workload, 0)
180180

181-
applications := application.ListAllForTeam(ctx, obj.TeamSlug)
181+
applications := application.ListAllForTeamInEnvironment(ctx, obj.TeamSlug, obj.EnvironmentName)
182182
for _, app := range applications {
183183
if slices.Contains(app.GetSecrets(), obj.Name) {
184184
ret = append(ret, app)
185185
}
186186
}
187187

188-
jobs := job.ListAllForTeam(ctx, obj.TeamSlug)
188+
jobs := job.ListAllForTeamInEnvironment(ctx, obj.TeamSlug, obj.EnvironmentName)
189189
for _, j := range jobs {
190190
if slices.Contains(j.GetSecrets(), obj.Name) {
191191
ret = append(ret, j)

0 commit comments

Comments
 (0)