Loading portal/rest/auth/login.py +1 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,7 @@ class Login(Resource): if data['type'] == 'user': username = data.get('username', None) password = data.get('password', None) gitlab_access_token = data.get('gitlab_access_token', None) gitlab_access_token = data.get('oauth_token', None) client = login_user(gitlab_access_token, password, username) elif data['type'] == 'component': Loading Loading
portal/rest/auth/login.py +1 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,7 @@ class Login(Resource): if data['type'] == 'user': username = data.get('username', None) password = data.get('password', None) gitlab_access_token = data.get('gitlab_access_token', None) gitlab_access_token = data.get('oauth_token', None) client = login_user(gitlab_access_token, password, username) elif data['type'] == 'component': Loading