mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
191ab3bb01
* Chore: move api key models into apikey service package * force table name for api key
17 lines
570 B
Go
17 lines
570 B
Go
package apikey
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Service interface {
|
|
GetAPIKeys(ctx context.Context, query *GetApiKeysQuery) error
|
|
GetAllAPIKeys(ctx context.Context, orgID int64) []*APIKey
|
|
DeleteApiKey(ctx context.Context, cmd *DeleteCommand) error
|
|
AddAPIKey(ctx context.Context, cmd *AddCommand) error
|
|
GetApiKeyById(ctx context.Context, query *GetByIDQuery) error
|
|
GetApiKeyByName(ctx context.Context, query *GetByNameQuery) error
|
|
GetAPIKeyByHash(ctx context.Context, hash string) (*APIKey, error)
|
|
UpdateAPIKeyLastUsedDate(ctx context.Context, tokenID int64) error
|
|
}
|