Skip to content
Snippets Groups Projects
Commit 24c4e3be authored by Felix Schäfer's avatar Felix Schäfer :construction_worker:
Browse files

Django 4 compatibility #14

parent ce5bf50b
No related branches found
No related tags found
No related merge requests found
Pipeline #141920 passed
from django.conf.urls import url
from django.urls import path
from .views import MatrixInviterView
urlpatterns = [
url(
r"^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/matrix_inviter/$",
path(
"control/event/<str:organizer>/<str:event>/matrix_inviter/",
MatrixInviterView.as_view(),
name="settings",
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment