From 1635f3204abc8a979822039adc52b4a299aaa071 Mon Sep 17 00:00:00 2001 From: Shreya Malviya Date: Mon, 1 Aug 2022 18:59:11 +0530 Subject: [PATCH] Island: Change /api/auth -> /api/authenticate --- monkey/monkey_island/cc/resources/auth/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/monkey_island/cc/resources/auth/auth.py b/monkey/monkey_island/cc/resources/auth/auth.py index 34632bf7e..d9513bae8 100644 --- a/monkey/monkey_island/cc/resources/auth/auth.py +++ b/monkey/monkey_island/cc/resources/auth/auth.py @@ -28,7 +28,7 @@ class Authenticate(AbstractResource): """ - urls = ["/api/auth"] + urls = ["/api/authenticate"] def __init__(self, authentication_service: AuthenticationService): self._authentication_service = authentication_service