Unverified Commit 4a7bb823 authored by Greg Messner's avatar Greg Messner Committed by GitHub
Browse files

Added info for the DiscussionsApi.

No related merge requests found
Showing with 7 additions and 0 deletions
+7 -0
......@@ -182,6 +182,7 @@ The API has been broken up into sub APIs classes to make it easier to learn and
&nbsp;&nbsp;[AwardEmojiApi](#awardemojiapi)<br/>
&nbsp;&nbsp;[CommitsApi](#commitsapi)<br/>
&nbsp;&nbsp;[DeployKeysApi](#deploykeysapi)<br/>
&nbsp;&nbsp;[DiscussionsApi](#discussionsapi)<br/>
&nbsp;&nbsp;[EpicsApi](#epicsapi)<br/>
&nbsp;&nbsp;[EventsApi](#eventsapi)<br/>
&nbsp;&nbsp;[GroupApi](#groupapi)<br/>
......@@ -231,6 +232,12 @@ List<Commit> commits = gitLabApi.getCommitsApi().getCommits(1234, "new-feature",
List<DeployKey> deployKeys = gitLabApi.getDeployKeysApi().getDeployKeys();
```
#### DiscussionsApi
```java
// Get a list of Discussions for the specified merge request
List<DeployKey> deployKeys = gitLabApi.getDiscussionsApi().getMergeRequestDiscussions(projectId, mergeRequestIid);
```
#### EpicsApi
```java
// Get a list epics of the requested group and its subgroups.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment