mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
580477bf8e
* unfurl SignedInUserAttrs services * replace signedInUser with Requester replace signedInUser with requester * fix tests * linting --------- Co-authored-by: Ieva <ieva.vasiljeva@grafana.com>
21 lines
396 B
Go
21 lines
396 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/services/auth/identity"
|
|
)
|
|
|
|
// HistoryQuery represents a query for alert state history.
|
|
type HistoryQuery struct {
|
|
RuleUID string
|
|
OrgID int64
|
|
DashboardUID string
|
|
PanelID int64
|
|
Labels map[string]string
|
|
From time.Time
|
|
To time.Time
|
|
Limit int
|
|
SignedInUser identity.Requester
|
|
}
|