mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
6afad51761
* Move SignedInUser to user service and RoleType and Roles to org * Use go naming convention for roles * Fix some imports and leftovers * Fix ldap debug test * Fix lint * Fix lint 2 * Fix lint 3 * Fix type and not needed conversion * Clean up messages in api tests * Clean up api tests 2
27 lines
678 B
Go
27 lines
678 B
Go
package dtos
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/services/accesscontrol"
|
|
"github.com/grafana/grafana/pkg/services/org"
|
|
)
|
|
|
|
// swagger:model
|
|
type NewApiKeyResult struct {
|
|
// example: 1
|
|
ID int64 `json:"id"`
|
|
// example: grafana
|
|
Name string `json:"name"`
|
|
// example: glsa_yscW25imSKJIuav8zF37RZmnbiDvB05G_fcaaf58a
|
|
Key string `json:"key"`
|
|
}
|
|
|
|
type ApiKeyDTO struct {
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Role org.RoleType `json:"role"`
|
|
Expiration *time.Time `json:"expiration,omitempty"`
|
|
AccessControl accesscontrol.Metadata `json:"accessControl,omitempty"`
|
|
}
|