Added a Apprise URL Details Endpoint (/details) (#105)

This commit is contained in:
Chris Caron
2023-02-26 10:33:14 -05:00
committed by GitHub
parent ae99d35671
commit 30d87c8284
9 changed files with 375 additions and 111 deletions

View File

@ -29,6 +29,9 @@ urlpatterns = [
re_path(
r'^$',
views.WelcomeView.as_view(), name='welcome'),
re_path(
r'^details/?',
views.DetailsView.as_view(), name='details'),
re_path(
r'^cfg/(?P<key>[\w_-]{1,64})/?',
views.ConfigView.as_view(), name='config'),