2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 20:45:44 +00:00

Documentation for Part app

This commit is contained in:
Oliver Walters
2019-04-27 22:18:07 +10:00
parent 5e6d49102d
commit ed3ae30248
11 changed files with 199 additions and 11 deletions

View File

@ -17,8 +17,6 @@ from .serializers import BuildSerializer
class BuildList(generics.ListCreateAPIView):
""" API endpoint for accessing a list of Build objects.
Provides two methods:
- GET: Return list of objects (with filters)
- POST: Create a new Build object

View File

@ -1,5 +1,5 @@
"""
Provides JSON serializers for Build API
JSON serializers for Build API
"""
# -*- coding: utf-8 -*-

View File

@ -1,5 +1,5 @@
"""
Provides Django views for interacting with Build objects
Django views for interacting with Build objects
"""
# -*- coding: utf-8 -*-