Skip to content

Commit d3b9ab5

Browse files
committed
Remove unused access url
1 parent 0a63bec commit d3b9ab5

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

coderd/workspaceresources_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,5 @@ func TestWorkspaceResource(t *testing.T) {
8888
require.Equal(t, app.Command, got.Command)
8989
require.Equal(t, app.Icon, got.Icon)
9090
require.Equal(t, app.Name, got.Name)
91-
require.Equal(t, app.Url, got.AccessURL)
9291
})
9392
}

codersdk/workspaceapps.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ type WorkspaceApp struct {
99
// Name is a unique identifier attached to an agent.
1010
Name string `json:"name"`
1111
Command string `json:"command,omitempty"`
12-
// AccessURL is an address used to access the application.
13-
// If command is specified, this will be omitted.
14-
AccessURL string `json:"access_url,omitempty"`
1512
// Icon is a relative path or external URL that specifies
1613
// an icon to be displayed in the dashboard.
1714
Icon string `json:"icon"`

0 commit comments

Comments
 (0)