Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2f32924

Browse files
committedJan 5, 2024
fix: changed the url in transferOwnership
1 parent 3c4ba30 commit 2f32924

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/organization/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export function Organization (http, data) {
102102
*/
103103
this.transferOwnership = async (email) => {
104104
try {
105-
const response = await http.post(`${this.urlPath}/transfer_ownership`, { transfer_to: email })
105+
const response = await http.post(`${this.urlPath}/transfer-ownership`, { transfer_to: email })
106106
if (response.data) {
107107
return response.data
108108
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.