about summary refs log tree commit diff
path: root/gn3
diff options
context:
space:
mode:
Diffstat (limited to 'gn3')
-rw-r--r--gn3/auth/authentication/oauth2/endpoints/revocation.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gn3/auth/authentication/oauth2/endpoints/revocation.py b/gn3/auth/authentication/oauth2/endpoints/revocation.py
index 0693c2d..b8517b6 100644
--- a/gn3/auth/authentication/oauth2/endpoints/revocation.py
+++ b/gn3/auth/authentication/oauth2/endpoints/revocation.py
@@ -11,6 +11,7 @@ from .utilities import query_token as _query_token
 
 class RevocationEndpoint(_RevocationEndpoint):
     """Revoke the tokens"""
+    ENDPOINT_NAME = "revoke"
     def query_token(self, token_string: str, token_type_hint: str):
         """Query the token."""
         return _query_token(self, token_string, token_type_hint)