Skip to content

Commit 693fd46

Browse files
committed
Make method anonymous, no API key is required.
FusionAuth/fusionauth-client-builder#34
1 parent 8802932 commit 693fd46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FusionAuthClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export class FusionAuthClient {
124124
* @returns {Promise<ClientResponse<ChangePasswordResponse>>}
125125
*/
126126
changePassword(changePasswordId: string, request: ChangePasswordRequest): Promise<ClientResponse<ChangePasswordResponse>> {
127-
return this.start<ChangePasswordResponse, Errors>()
127+
return this.startAnonymous<ChangePasswordResponse, Errors>()
128128
.withUri('/api/user/change-password')
129129
.withUriSegment(changePasswordId)
130130
.withJSONBody(request)

0 commit comments

Comments
 (0)