Skip to content

Commit

Permalink
fix(api): ignore created on workflow audit (#3248)
Browse files Browse the repository at this point in the history
close #3242
Signed-off-by: Benjamin Coenen <benjamin.coenen@corp.ovh.com>
  • Loading branch information
bnjjj authored and yesnault committed Aug 22, 2018
1 parent 6ebf1b3 commit 06c2f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/audit.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type AuditWorklflow struct {
ProjectKey string `json:"project_key" db:"project_key"`
WorkflowID int64 `json:"workflow_id" db:"workflow_id"`
TriggeredBy string `json:"triggered_by" db:"triggered_by"`
Created time.Time `json:"created" db:"created"`
Created time.Time `json:"created" db:"created" mapstructure:"-"`
DataBefore string `json:"data_before" db:"data_before"`
DataAfter string `json:"data_after" db:"data_after"`
EventType string `json:"event_type" db:"event_type"`
Expand Down

0 comments on commit 06c2f28

Please sign in to comment.