Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions checkly_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1121,6 +1121,7 @@ var testDashboard = checkly.Dashboard{
HideTags: false,
ChecksPerPage: 15,
UseTagsAndOperator: true,
EnableIncidents: true,
}

var ignoreDashboardFields = cmpopts.IgnoreFields(checkly.Dashboard{}, "DashboardID", "CreatedAt", "ID", "Keys")
Expand Down
1 change: 1 addition & 0 deletions fixtures/CreateDashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"width": "FULL",
"checksPerPage": 15,
"useTagsAndOperator": true,
"enableIncidents": true,
"refreshRate": 60,
"paginate": true,
"paginationRate": 30,
Expand Down
1 change: 1 addition & 0 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1129,6 +1129,7 @@ type Dashboard struct {
Tags []string `json:"tags,omitempty"`
HideTags bool `json:"hideTags,omitempty"`
UseTagsAndOperator bool `json:"useTagsAndOperator,omitempty"`
EnableIncidents bool `json:"enableIncidents"`
CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"`
Keys []DashboardKey `json:"keys,omitempty"`
Expand Down