mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 04:52:10 +08:00

* remove api key endpoints * generate openapi specs * remove methods from mock service * remove ApiKeyDTO * generate openapi specs * remove apikey migration endpoints * remove unused function
12 lines
233 B
Go
12 lines
233 B
Go
package dtos
|
|
|
|
// 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"`
|
|
}
|