Commit 33b18bb2 authored by Barbora Kompišová's avatar Barbora Kompišová
Browse files

token key fix

parent 3aa195f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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':