Skip to content

feat: add frontend for app statuses #17178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 1, 2025
Prev Previous commit
Next Next commit
gen
  • Loading branch information
kylecarbs committed Apr 1, 2025
commit a60a3b7ee4c94d7dec57f238ae633ed04434f4d1
3 changes: 1 addition & 2 deletions coderd/workspaceagents.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ func (api *API) workspaceAgent(rw http.ResponseWriter, r *http.Request) {

var eg errgroup.Group
eg.Go(func() (err error) {
// nolint:gocritic // This is a system restricted operation.
dbApps, err = api.Database.GetWorkspaceAppsByAgentID(dbauthz.AsSystemRestricted(ctx), workspaceAgent.ID)
dbApps, err = api.Database.GetWorkspaceAppsByAgentID(ctx, workspaceAgent.ID)
return err
})
eg.Go(func() (err error) {
Expand Down