BB: Change /api/auth -> /api/authenticate

This commit is contained in:
Shreya Malviya 2022-08-01 18:59:55 +05:30
parent 1635f3204a
commit 3c1e69eabb
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class MonkeyIslandRequests(object):
def get_jwt_from_server(self): def get_jwt_from_server(self):
resp = requests.post( # noqa: DUO123 resp = requests.post( # noqa: DUO123
self.addr + "api/auth", self.addr + "api/authenticate",
json={"username": ISLAND_USERNAME, "password": ISLAND_PASSWORD}, json={"username": ISLAND_USERNAME, "password": ISLAND_PASSWORD},
verify=False, verify=False,
) )