1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 10:18:38 +00:00

Fix var-naming

This commit is contained in:
chesterip
2023-08-30 11:34:01 -04:00
parent 80a2c8ee38
commit 1ba5701536
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ import (
// ActionTask represents a ActionTask
type ActionTask struct {
Id int64 `json:"id"`
ID int64 `json:"id"`
Name string `json:"name"`
HeadBranch string `json:"head_branch"`
HeadSha string `json:"head_sha"`
@@ -18,7 +18,7 @@ type ActionTask struct {
DisplayTitle string `json:"display_title"`
Status string `json:"status"`
WorkflowID string `json:"workflow_id"`
Url string `json:"url"`
URL string `json:"url"`
// swagger:strfmt date-time
CreatedAt time.Time `json:"created_at,omitempty"`
// swagger:strfmt date-time