Commit 40ba792e authored by Greg Messner's avatar Greg Messner
Browse files

Added SessionApi info.

parent 413f1c2c
...@@ -22,6 +22,7 @@ GroupApi ...@@ -22,6 +22,7 @@ GroupApi
MergeRequestApi MergeRequestApi
ProjectApi ProjectApi
RepositoryApi RepositoryApi
SessionApi
UserApi UserApi
``` ```
...@@ -55,6 +56,12 @@ RepositoryApi: ...@@ -55,6 +56,12 @@ RepositoryApi:
List<Branch> branches = gitLabApi.getRepositoryApi().getBranches(); List<Branch> branches = gitLabApi.getRepositoryApi().getBranches();
``` ```
SessionApi:
```java
// Log in to the GitLab server and get the session info
getLabApi.getSessionApi().login("your-username", "your-email", "your-password");
```
UserApi: UserApi:
```java ```java
// Get the User info for user_id 1 // Get the User info for user_id 1
......
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