-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build services/controller for creating form templates #29
Conversation
…into build-services-controller-form-templates
…into build-services-controller-form-templates
…into build-services-controller-form-templates
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
/** | ||
* Retrieve all form templates. | ||
* @param limit the number of form templates we want to retrieve (optional) | ||
* @returns all formk templates, hydrated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
type
data: { | ||
name: updateFormTemplateDto.name, | ||
formDocLink: updateFormTemplateDto.formDocLink, | ||
signatureFields: { create: updateFormTemplateDto.signatureFields }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
comment this out for now, we need to think about how updating the signature fields will work
Description/Problem
Closes Build form templates
Creates services and controller for basic CRUD operations on form templates.
Solution
Added form templates services, controllers, dtos, and entities.
Defined routes for creating a form template, getting all form templates, finding one form template, updating a form template, and removing a form template.
Dependencies
[ ] This PR adds new dependencies
Testing
// todo