2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-11 07:24:15 +00:00

Updated part API

This commit is contained in:
Oliver
2017-04-11 23:33:08 +10:00
parent 08fc21eb9b
commit 4c07e8d8a0
3 changed files with 22 additions and 25 deletions

View File

@ -6,6 +6,9 @@ urlpatterns = [
# Single part detail
url(r'^(?P<pk>[0-9]+)/$', views.PartDetail.as_view()),
# Part parameters list
url(r'^(?P<pk>[0-9]+)/parameters/$', views.PartParameters.as_view()),
# Part category detail
url(r'^category/(?P<pk>[0-9]+)/$', views.PartCategoryDetail.as_view()),