-
Notifications
You must be signed in to change notification settings - Fork 27
feat: add endpoint to create many templates at once. #1430
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deepakprabhakara
requested changes
Jun 3, 2024
ukrocks007
suggested changes
Jun 3, 2024
@ukrocks007 Your suggestion to use |
ukrocks007
suggested changes
Jun 24, 2024
ukrocks007
suggested changes
Jun 24, 2024
Co-authored-by: Utkarsh Mehta <[email protected]>
ukrocks007
suggested changes
Jun 25, 2024
just addressed the changes, thanks for reviewing my code |
ukrocks007
approved these changes
Jul 3, 2024
ukrocks007
added a commit
that referenced
this pull request
Jul 8, 2024
* feat: add endpoint to create many templates at once. (#1430) * feat: add endpoint to create many templates at once. * fix: comply with id unique constraint by declaring it inside loop * fix: update api endpoint to comply with standard Co-authored-by: Utkarsh Mehta <[email protected]> * fix: revert change to original endpoint * fix: add limit to template bulk creation endpoint * fix: lint Co-authored-by: Utkarsh Mehta <[email protected]> * fix: template limit and move checkAdminAccessUnwrapped to avoid unnecessary calls * fix: change many->bulk --------- Co-authored-by: Utkarsh Mehta <[email protected]> * chore: format * feat: support array for template and single template in createTemplate handler * feat: add TemplateResponse type to createTemplate handler * feat: add CreateTemplateBulk#createTemplate() method for bulk template creation This commit adds a new method `CreateTemplateBulk#createTemplate()` to handle the bulk creation of templates. The method takes in an array of template objects and creates them in the database. It also includes necessary error handling and cleanup. * feat: fixes * lint --------- Co-authored-by: oliver <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Thank you for contributing to Retraced!
Please add a summary of your change
Adds a new endpoint that expects the following object:
will create many templates to the same project and environment at once.
Does your change fix a particular issue?
Not an issue. Will be used by my cal.com integration to setup a list of default templates for all events that cal.com will report.