-
Notifications
You must be signed in to change notification settings - Fork 0
Description
we already have:
-
PartTemplate Domain Class
-
PartTemplateRepository (required methods might not be implemented)
-
Database mapping in ServiceDbContext
-
FacadeService (required methods might not be implemented)
-
PartTemplateResource
-
ResourceBuilders for requesting multiple PartTemplates and a Single Part Template
-
Response Processor for responding with multiple PartTemplates
-
Nancy route for requesting all PartTemplates
-
Service test for that Nancy route
-
all the redux gubbins we need to request all PartTemplates (action creators, reducer, selectors)
Need to add:
-
domain service to facilitate creating and updating a PartTemplate with permission checks + corresponding unit tests. The part.admin privilege is probably good enough for now.
-
missing response processor for responding with a single PartTemplate
-
Nancy routes to create/update PartTemplates
-
Service tests for the above
-
all the redux gubbins required to request/create/update a single PartTemplate (using the components library)
a React UI (using the components library) to:
- view all templates
- view/update single template
- create a new template
- front end tests for all the above