From 28ac8d01c77c2f22f7de971ecfef2d7eebe1269d Mon Sep 17 00:00:00 2001 From: Greg Messner Date: Sun, 20 Jan 2019 18:56:09 -0800 Subject: [PATCH] Added WikisApi to list of APIs (#290). --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c2ff76b2..cad87811 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep ```java dependencies { ... - compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.9.12' + compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.9.14' } ``` @@ -22,7 +22,7 @@ dependencies { org.gitlab4j gitlab4j-api - 4.9.12 + 4.9.14 ``` @@ -225,6 +225,7 @@ The API has been broken up into sub API classes to make it easier to learn and t   [SnippetsApi](#snippetsapi)
  [SystemHooksApi](#systemhooksapi)
  [UserApi](#userapi) +  [WikisApi](#wikisapi) ### Sub API Examples @@ -421,3 +422,9 @@ String password = null; boolean sendResetPasswordEmail = true; gitLabApi.getUserApi().createUser(userConfig, password, sendResetPasswordEmail); ``` + +#### WikisApi +```java +// Get a list of pages in project wiki +List wikiPages = gitLabApi.getWikisApi().getPages(); +``` -- GitLab