From cf331b0198778ec8dea897dddf99a00720f5f273 Mon Sep 17 00:00:00 2001 From: harture Date: Tue, 16 Apr 2019 14:41:17 +0200 Subject: [PATCH] Adapt target URL for api extensions to the new format --- users.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users.go b/users.go index 23dd3f5..3e68638 100644 --- a/users.go +++ b/users.go @@ -13,7 +13,7 @@ const ( userIDPath = userPath + "/:id" resetPasswordPath = userIDPath + "/reset-password" sendVerifyEmailPath = userIDPath + "/send-verify-email" - getCredentialsForUserPath = "/auth/realms/:realmReq/api/realms/:realm/users/:id/credentials" + getCredentialsForUserPath = "/auth/realms/:realmReq/api/admin/realms/:realm/users/:id/credentials" deleteCredentialsForUserPath = getCredentialsForUserPath + "/:credid" )