8000 feat: bypass built-in CORS handling for workspace apps by dannykopping · Pull Request #15669 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content
Prev Previous commit
Next Next commit
Appease the linter, again
Signed-off-by: Danny Kopping <danny@coder.com>
  • Loading branch information
dannykopping committed Nov 28, 2024
commit 5be547762bb9f8ad9be9d9b593b5ca6ed60f3ec8
8 changes: 4 additions & 4 deletions coderd/workspaceapps/token.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ type SignedToken struct {
// Request details.
Request `json:"request"`

UserID uuid.UUID `json:"user_id"`
WorkspaceID uuid.UUID `json:"workspace_id"`
AgentID uuid.UUID `json:"agent_id"`
AppURL string `json:"app_url"`
UserID uuid.UUID `json:"user_id"`
WorkspaceID uuid.UUID `json:"workspace_id"`
AgentID uuid.UUID `json:"agent_id"`
AppURL string `json:"app_url"`
CORSBehavior codersdk.AppCORSBehavior `json:"cors_behavior"`
}

Expand Down
4 changes: 4 additions & 0 deletions site/src/api/typesGenerated.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0