Skip to content

Commit 6fb7f50

Browse files
author
jennparise
authored
Merge pull request #1 from jennparise/jenn/fixUnshare
fixing missing / from unshare in Projects
2 parents 05a01d1 + 02ab81c commit 6fb7f50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/Projects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class Projects extends BaseService {
114114
unshare(projectId: ProjectId, groupId: GroupId) {
115115
const [pId, gId] = [projectId, groupId].map(encodeURIComponent);
116116

117-
return RequestHelper.delete(this, `projects/${pId}/share${gId}`);
117+
return RequestHelper.delete(this, `projects/${pId}/share/${gId}`);
118118
}
119119

120120
unstar(projectId: ProjectId) {

0 commit comments

Comments
 (0)