2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-20 05:46:34 +00:00

Create a new part parameter template

This commit is contained in:
Oliver Walters
2019-09-07 19:53:47 +10:00
parent 94ab7c5b0e
commit 67ea0fa887
2 changed files with 14 additions and 2 deletions

View File

@ -412,7 +412,7 @@ part_star_api_urls = [
]
part_param_api_urls = [
url(r'^template/?$', PartParameterTemplateList.as_view(), name='api-part-param-template-list'),
url(r'^template/$', PartParameterTemplateList.as_view(), name='api-part-param-template-list'),
url(r'^.*$', PartParameterList.as_view(), name='api-part-param-list'),
]