roosterwijs/backend/plugins/urls.py
bes-r c845588e5e
Some checks failed
CI / backend (push) Has been cancelled
CI / frontend (push) Has been cancelled
Add roles modules audit logging and CI
2026-07-04 23:01:06 +02:00

9 lines
281 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("modules/", views.module_list, name="module-list"),
path("modules/<str:key>/state/", views.module_set_state, name="module-set-state"),
path("audit-log/", views.audit_log_list, name="audit-log"),
]