@@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep
11
11
``` java
12
12
dependencies {
13
13
...
14
- compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.8.3 '
14
+ compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.8.4 '
15
15
}
16
16
```
17
17
@@ -20,7 +20,7 @@ dependencies {
20
20
<dependency >
21
21
<groupId >org.gitlab4j</groupId >
22
22
<artifactId >gitlab4j-api</artifactId >
23
- <version >4.8.3 </version >
23
+ <version >4.8.4 </version >
24
24
</dependency >
25
25
```
26
26
@@ -146,6 +146,7 @@ The API has been broken up into sub APIs classes to make it easier to learn and
146
146
  ;  ; [ MilestonesApi] ( #milestonesapi ) <br />
147
147
  ;  ; [ NamespaceApi] ( #namespaceapi ) <br />
148
148
  ;  ; [ NotesApi] ( #notesapi ) <br />
149
+   ;  ; [ NotificationSettingsApi] ( #notificationsettingsapi ) <br />
149
150
  ;  ; [ PipelineApi] ( #pipelineapi ) <br />
150
151
  ;  ; [ ProjectApi] ( #projectapi ) <br />
151
152
  ;  ; [ RepositoryApi] ( #repositoryapi ) <br />
@@ -227,7 +228,12 @@ List<Namespace> namespaces = gitLabApi.getNamespaceApi().findNamespaces("foobar"
227
228
#### NotesApi
228
229
``` java
229
230
// Get a list of the issues's notes for project ID 1234, issue IID 1
230
- List<Note > notes = getNotes(1234 , 1 );
231
+ List<Note > notes = gitLabApi. getNotesApi(). getNotes(1234 , 1 );
232
+ ```
233
+ #### NotificationSettingsApi
234
+ ``` java
235
+ // Get the current global notification settings
236
+ NotificationSettings settings = gitLabApi. getNotificationSettingsApi(). getGlobalNotificationSettings();
231
237
```
232
238
233
239
#### PipelineApi
0 commit comments