diff --git a/user/manager.go b/user/manager.go index 182dbaeb..25fc1496 100644 --- a/user/manager.go +++ b/user/manager.go @@ -9,8 +9,8 @@ import ( type Manager interface { SetPrincipalOnCurrentUser(apiContext *types.APIContext, principal v3.Principal) (*v3.User, error) GetUser(apiContext *types.APIContext) string - EnsureToken(tokenName, description, userName string) (string, error) - EnsureClusterToken(clusterName, tokenName, description, userName string) (string, error) + EnsureToken(tokenName, description, kind, userName string) (string, error) + EnsureClusterToken(clusterName, tokenName, description, kind, userName string) (string, error) EnsureUser(principalName, displayName string) (*v3.User, error) CheckAccess(accessMode string, allowedPrincipalIDs []string, userPrincipalID string, groups []v3.Principal) (bool, error) SetPrincipalOnCurrentUserByUserID(userID string, principal v3.Principal) (*v3.User, error)