Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
53d8a1f1
Commit
53d8a1f1
authored
Jul 19, 2020
by
Greg Messner
Browse files
Fixed unshareGroup() method name (#587)
parent
fc0217a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/GroupApi.java
View file @
53d8a1f1
...
@@ -1683,7 +1683,7 @@ public class GroupApi extends AbstractApi {
...
@@ -1683,7 +1683,7 @@ public class GroupApi extends AbstractApi {
* @param sharedWithGroupId the ID of the group to unshare with, required
* @param sharedWithGroupId the ID of the group to unshare with, required
* @throws GitLabApiException if any exception occurs
* @throws GitLabApiException if any exception occurs
*/
*/
public
void
shareGroup
(
Object
groupIdOrPath
,
Integer
sharedWithGroupId
)
throws
GitLabApiException
{
public
void
un
shareGroup
(
Object
groupIdOrPath
,
Integer
sharedWithGroupId
)
throws
GitLabApiException
{
delete
(
Response
.
Status
.
NO_CONTENT
,
null
,
delete
(
Response
.
Status
.
NO_CONTENT
,
null
,
"groups"
,
getGroupIdOrPath
(
groupIdOrPath
),
"share"
,
sharedWithGroupId
);
"groups"
,
getGroupIdOrPath
(
groupIdOrPath
),
"share"
,
sharedWithGroupId
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment