-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
91 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,6 +156,12 @@ public IMergeRequestClient GetMergeRequest(int projectId) | |
public IMergeRequestClient GetMergeRequest(ProjectId projectId) | ||
=> new MergeRequestClient(_api, projectId); | ||
|
||
public IMergeRequestClient GetGroupMergeRequest(int groupId) | ||
=> GetGroupMergeRequest((long)groupId); | ||
|
||
public IMergeRequestClient GetGroupMergeRequest(GroupId groupId) | ||
=> new MergeRequestClient(groupId, _api); | ||
Check failure on line 163 in NGitLab/GitLabClient.cs
|
||
|
||
public IMilestoneClient GetMilestone(int projectId) | ||
=> GetMilestone((long)projectId); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,11 @@ public interface IGitLabClient | |
|
||
IMergeRequestClient GetMergeRequest(ProjectId projectId); | ||
|
||
[EditorBrowsable(EditorBrowsableState.Never)] | ||
Check failure on line 82 in NGitLab/IGitLabClient.cs
|
||
IMergeRequestClient GetGroupMergeRequest(int groupId); | ||
|
||
IMergeRequestClient GetGroupMergeRequest(GroupId groupId); | ||
|
||
[EditorBrowsable(EditorBrowsableState.Never)] | ||
IMilestoneClient GetMilestone(int projectId); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters