diff options
-rw-r--r-- | gitlab/v4/objects.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index e3780a9..03d75bf 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -260,11 +260,6 @@ class CurrentUserManager(GetWithoutIdMixin, RESTManager): _path = '/user' _obj_cls = CurrentUser - def credentials_auth(self, email, password): - data = {'email': email, 'password': password} - server_data = self.gitlab.http_post('/session', post_data=data) - return CurrentUser(self, server_data) - class ApplicationSettings(SaveMixin, RESTObject): _id_attr = None |