File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -218,8 +218,8 @@ The following is a list of the available sub APIs along with a sample use of eac
218218
219219### Available Sub APIs
220220------------------
221-   ;  ; [ ApplicationSettingsApi] ( #applicationSettingsapi ) <br />
222221  ;  ; [ ApplicationsApi] ( #applicationsapi ) <br />
222+   ;  ; [ ApplicationSettingsApi] ( #applicationsettingsapi ) <br />
223223  ;  ; [ AwardEmojiApi] ( #awardemojiapi ) <br />
224224  ;  ; [ BoardsApi] ( #boardsapi ) <br />
225225  ;  ; [ CommitsApi] ( #commitsapi ) <br />
@@ -254,20 +254,19 @@ The following is a list of the available sub APIs along with a sample use of eac
254254
255255### Sub API Examples
256256----------------
257-
258- #### ApplicationSettingsApi
259- ``` java
260- // Get the current GitLab server application settings
261- ApplicationSettings appSettings = gitLabApi. getApplicationSettingsApi(). getAppliationSettings();
262- ```
263-
264257#### ApplicationsApi
265258``` java
266259// Add an OAUTH Application to GitLab
267260ApplicationScope [] scopes = {ApplicationScope . SUDO , ApplicationScope . PROFILE };
268261gitLabApi. getApplicationsApi(). createApplication(" My OAUTH Application" , " https//example.com/myapp/callback" , scopes);
269262```
270263
264+ #### ApplicationSettingsApi
265+ ``` java
266+ // Get the current GitLab server application settings
267+ ApplicationSettings appSettings = gitLabApi. getApplicationSettingsApi(). getAppliationSettings();
268+ ```
269+
271270#### AwardEmojiApi
272271``` java
273272// Get a list of AwardEmoji belonging to the specified issue (group ID = 1, issues IID = 1)
You can’t perform that action at this time.
0 commit comments