Add key creation/revocation

This commit is contained in:
Joachim
2021-12-22 15:12:56 +01:00
parent af9c983145
commit 45dd39d370
4 changed files with 93 additions and 0 deletions

View File

@ -487,4 +487,8 @@ urlpatterns = [
views.AnnualSummary.as_view(),
name="annual-summary",
),
re_path(r"^summary_add_key/?$", views.summary_add_key, name="summary-add-key"),
re_path(
r"^summary_revoke_key/?$", views.summary_revoke_key, name="summary-revoke-key"
),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)