From c4721cc503357bd2d9a8b7e3f53c88adc022901f Mon Sep 17 00:00:00 2001 From: Greg Messner Date: Thu, 28 Dec 2017 16:46:53 -0800 Subject: [PATCH] Removed note about logging in on 10.2 servers. --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 3c2f69c0..969096a5 100644 --- a/README.md +++ b/README.md @@ -43,9 +43,6 @@ You can also login to your GitLab server with username, and password: // Log in to the GitLab server using a username and password GitLabApi gitLabApi = GitLabApi.login("http://your.gitlab.server.com", "your-username", "your-password"); ``` -**NOTE: Logging in with username and password is not available on GitLab servers 10.2 and above.** - - As of GitLab4J-API 4.6.6, all API requests support performing the API call as if you were another user, provided you are authenticated as an administrator: ```java // Create a GitLabApi instance to communicate with your GitLab server (must be an administrator) -- GitLab