rename revoke to delete to be clearer

This commit is contained in:
Ariel Rin
2022-10-12 20:22:20 +10:00
parent 6b8341ab5a
commit 90ad7790e1
3 changed files with 8 additions and 10 deletions

View File

@@ -28,9 +28,9 @@ urlpatterns = [
name='token_management'
),
path(
'account/tokens/revoke/<int:token_id>',
views.token_revoke,
name='token_revoke'
'account/tokens/delete/<int:token_id>',
views.token_delete,
name='token_delete'
),
path(
'account/tokens/refresh/<int:token_id>',