Skip to content

Commit 2e79cac

Browse files
authored
(MAINT) Fix the users URL. (#92)
1 parent c901374 commit 2e79cac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/rbac/users.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
)
77

88
const (
9-
requestUsersURI = "/users" // #nosec - this is the uri to g et RBAC tokens
10-
requestCurrentUserURI = "/users/current" // #nosec - this is the uri to authenticate RBAC tokens
11-
requestUserURI = "/users/" // #nosec - this is the uri to revoke individual RBAC tokens
9+
requestUsersURI = "/rbac-api/v1/users" // #nosec - this is the uri to g et RBAC tokens
10+
requestCurrentUserURI = "/rbac-api/v1/users/current" // #nosec - this is the uri to authenticate RBAC tokens
11+
requestUserURI = "/rbac-api/v1/users/" // #nosec - this is the uri to revoke individual RBAC tokens
1212
)
1313

1414
// User describes the user keys.

0 commit comments

Comments
 (0)