mirror of
https://github.com/lemeow125/EquipmentTracker-Backend.git
synced 2024-11-17 14:19:25 +08:00
17 lines
516 B
Python
17 lines
516 B
Python
|
from django.urls import include, path
|
||
|
from rest_framework import routers
|
||
|
from . import views
|
||
|
|
||
|
router = routers.DefaultRouter()
|
||
|
# For viewing all equipments
|
||
|
router.register(r'equipment_groups', views.EquipmentGroupViewSet)
|
||
|
|
||
|
# Wire up our API using automatic URL routing.
|
||
|
# Additionally, we include login URLs for the browsable API.
|
||
|
urlpatterns = [
|
||
|
path('', include(router.urls)),
|
||
|
# Last changed equipment group
|
||
|
path('equipment_groups/latest',
|
||
|
views.LastUpdatedEquipmentGroupViewSet.as_view()),
|
||
|
]
|