Skip to content

Commit

Permalink
fix(api): copilot set json fields with underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan-pad committed Oct 23, 2023
1 parent b916823 commit 3ecd58d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/server/api/layers.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ type layer struct {
Repository string `json:"repository"`
Branch string `json:"branch"`
Path string `json:"path"`
LastResult string `json:"last_result"`
IsRunning bool `json:"is_running"`
IsPR bool `json:"is_pr"`
LastResult string `json:"lastResult"`
IsRunning bool `json:"isRunning"`
IsPR bool `json:"isPR"`
}

type layersResponse struct {
Expand Down

0 comments on commit 3ecd58d

Please sign in to comment.