diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b2c6fa33..15675ce1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -12,6 +12,10 @@ Change Log Unreleased ---------- +Removed +~~~~~~~ +* EoxCoreAPIPermission from UserInfo APIView + [3.2.0] - 2020-11-18 -------------------- diff --git a/eox_core/api/v1/views.py b/eox_core/api/v1/views.py index ddc297d5..723fe51b 100644 --- a/eox_core/api/v1/views.py +++ b/eox_core/api/v1/views.py @@ -456,7 +456,6 @@ class UserInfo(APIView): Can use Oauth2/Session """ authentication_classes = (BearerAuthentication, SessionAuthentication) - permission_classes = (EoxCoreAPIPermission,) renderer_classes = (JSONRenderer, BrowsableAPIRenderer) def get(self, request, format=None): # pylint: disable=redefined-builtin