Skip to content
Snippets Groups Projects
Commit 9d2e582d authored by Daniel Palomar's avatar Daniel Palomar
Browse files

fix(auth): comment django default auth settings

parent b39d971c
No related tags found
1 merge request!4Draft: Configure Keycloak as authentication method
......@@ -23,8 +23,8 @@ logger = logging.getLogger(__name__)
class ProfileViewSet(ViewSet):
authentication_classes = [SessionAuthentication]
permission_classes = [IsAuthenticated]
authentication_classes = [] # SessionAuthentication]
permission_classes = [] # IsAuthenticated]
# GET /api/profile/ is list method, not ideal pero peor es morirse
def list(self, request):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment