pretix-servicefees/pretix_servicefees/urls.py
Raphael Michel 063a8e44e9 Run black
2024-05-31 16:41:47 +02:00

12 lines
230 B
Python

from django.urls import path
from .views import SettingsView
urlpatterns = [
path(
"control/event/<str:organizer>/<str:event>/settings/servicefees/",
SettingsView.as_view(),
name="settings",
),
]