1
0
Fork 1
mirror of https://github.com/pretix/pretix-servicefees.git synced 2025-03-15 08:24:21 +01:00
pretix-servicefees/pretix_servicefees/urls.py
Raphael Michel 063a8e44e9 Run black
2024-05-31 16:41:47 +02:00

11 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",
),
]