mirror of
https://github.com/pretix/pretix-servicefees.git
synced 2024-11-14 11:04:21 +01:00
8 lines
207 B
Python
8 lines
207 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'),
|
|
]
|