mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
Rename DCC project into RAM
RAM: Railroad Assets Manager
This commit is contained in:
9
ram/roster/urls.py
Normal file
9
ram/roster/urls.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.urls import path
|
||||
from roster.views import RosterList, RosterGet, RosterAddress, RosterIdentifier
|
||||
|
||||
urlpatterns = [
|
||||
path("list", RosterList.as_view()),
|
||||
path("get/<str:uuid>", RosterGet.as_view()),
|
||||
path("address/<int:address>", RosterAddress.as_view()),
|
||||
path("identifier/<str:identifier>", RosterIdentifier.as_view()),
|
||||
]
|
Reference in New Issue
Block a user