Skip to content

Commit 8e70e20

Browse files
Add trailing slash back (#27)
1 parent 8d5ad0c commit 8e70e20

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "git",
55
"url": "https://github.com/PropelAuth/node"
66
},
7-
"version": "2.1.6",
7+
"version": "2.1.7",
88
"license": "MIT",
99
"keywords": [
1010
"auth",

src/api/migrateUser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function migrateUserFromExternalSource(
4444
username: migrateUserFromExternalSourceRequest.username,
4545
properties: migrateUserFromExternalSourceRequest.properties,
4646
}
47-
return httpRequest(authUrl, integrationApiKey, `${ENDPOINT_PATH}`, "POST", JSON.stringify(request)).then(
47+
return httpRequest(authUrl, integrationApiKey, `${ENDPOINT_PATH}/`, "POST", JSON.stringify(request)).then(
4848
(httpResponse) => {
4949
if (httpResponse.statusCode === 401) {
5050
throw new Error("integrationApiKey is incorrect")

0 commit comments

Comments
 (0)