fix(docs): convert APIKey to string EE-6199 (#10943)

This commit is contained in:
Dakota Walsh
2024-01-15 11:59:39 +13:00
committed by GitHub
parent d750389c67
commit 488fcc7cc5
10 changed files with 45 additions and 45 deletions

View File

@@ -152,7 +152,7 @@ type (
APIKeyRepository interface {
BaseCRUD[portainer.APIKey, portainer.APIKeyID]
GetAPIKeysByUserID(userID portainer.UserID) ([]portainer.APIKey, error)
GetAPIKeyByDigest(digest []byte) (*portainer.APIKey, error)
GetAPIKeyByDigest(digest string) (*portainer.APIKey, error)
}
// SettingsService represents a service for managing application settings