perf: url revoke_token/ to revoke/

This commit is contained in:
Bai
2025-12-02 18:04:31 +08:00
committed by feng626
parent 1a3f5e3f9a
commit b8ecb703cf

View File

@@ -9,6 +9,6 @@ from . import views
urlpatterns = [
path("authorize/", op_views.AuthorizationView.as_view(), name="authorize"),
path("token/", op_views.TokenView.as_view(), name="token"),
path("revoke_token/", op_views.RevokeTokenView.as_view(), name="revoke-token"),
path("revoke/", op_views.RevokeTokenView.as_view(), name="revoke-token"),
path(".well-known/oauth-authorization-server", views.OAuthAuthorizationServerView.as_view(), name="oauth-authorization-server"),
]