mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 05:07:50 +02:00
* Implement a customer manager for flatpages * Implement public manager for private objects * Add support for unpublished objects in roster and consist * Add support for unpublished objects in bookshelf * Update filtering on REST views * Use uuid in urls.py * Increment version
10 lines
327 B
Python
10 lines
327 B
Python
from django.urls import path
|
|
from roster.views import RosterList, RosterGet, RosterAddress, RosterClass
|
|
|
|
urlpatterns = [
|
|
path("list", RosterList.as_view()),
|
|
path("get/<uuid:uuid>", RosterGet.as_view()),
|
|
path("address/<int:address>", RosterAddress.as_view()),
|
|
path("class/<str:class>", RosterClass.as_view()),
|
|
]
|