feat(api): adds endpoint for mass pausing alerts

ref #6589
This commit is contained in:
bergquist
2016-12-16 15:00:58 +01:00
parent 830bf5a91c
commit fb6aa0e026
9 changed files with 117 additions and 39 deletions
+4 -3
View File
@@ -132,9 +132,10 @@ type SaveAlertsCommand struct {
}
type PauseAlertCommand struct {
OrgId int64
AlertId int64
Paused bool
OrgId int64
AlertIds []int64
ResultCount int64
Paused bool
}
type SetAlertStateCommand struct {