feature/enforce_login (#32)

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#32
This commit is contained in:
2025-07-23 07:27:57 +12:00
parent df896878f1
commit 43c95e3da7
8 changed files with 126 additions and 76 deletions

View File

@ -13,7 +13,8 @@ urlpatterns = [
# Home
re_path(r'^$', v.index, name='index'),
# re_path(r'^login', v.login, name='login'),
re_path(r'^login', v.login, name='login'),
re_path(r'^logout', v.logout, name='logout'),
# Top level urls
re_path(r'^package$', v.packages, name='packages'),