8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-24 20:33:11 +00:00

Users can extend their connection through the captive portal

This commit is contained in:
Yohann D'ANELLO 2021-02-01 03:21:09 +01:00
parent ea8e5e80db
commit c4a93927a2
No known key found for this signature in database
GPG key ID: 3A75C55819C8CF85

View file

@ -25,6 +25,7 @@ to make a captive portal.
This is only sugar, this does not provide any model.
"""
from cotisations.views import new_facture
from django.conf.urls import url
from django.contrib.auth.views import LoginView
@ -33,4 +34,5 @@ from .views import SignUpView
urlpatterns = [
url(r"^signup/$", SignUpView.as_view(), name="signup"),
url(r"^login/$", LoginView.as_view(), name="login"),
url(r"^extend-connection/(?P<userid>[0-9]+)/$", new_facture, name="extend-connection"),
]