fix(alerting): pause dto can only pause one

This commit is contained in:
bergquist
2016-12-19 16:05:24 +01:00
parent a2257ec3d0
commit b2c5a6a037
3 changed files with 11 additions and 27 deletions

View File

@@ -138,10 +138,9 @@ type SaveAlertsCommand struct {
}
type PauseAlertCommand struct {
OrgId int64
AlertIds []int64
ResultCount int64
Paused bool
OrgId int64
AlertId int64
Paused bool
}
type PauseAllAlertCommand struct {