-
Notifications
You must be signed in to change notification settings - Fork 63
[ENG-3105] Bulk upload widget, with acceptance tests. #1303
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
Conversation
* UploadCSV component * bulk upload widget * err modals * add moar msgs * bump ember-template-lint version; add toast msg * fix tests
Pull Request Test Coverage Report for Build 1281836326
💛 - Coveralls |
fabmiz
left a comment
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.
Looks great 💯 Minor suggestion. I am also not sure why yarn.lock was updated, could you not commit the update.
| @buildUrl={{action this.buildUrl}} | ||
| @options={{this.dropzoneOptions}} | ||
| @dropzone={{false}} | ||
| @addedfile={{action this.addedFile}} | ||
| @uploadprogress={{action this.uploadProgress}} | ||
| @success={{action this.success}} | ||
| @error={{action this.error}} | ||
| @dragenter={{action (mut this.dropping) true}} | ||
| @dragover={{action (mut this.dropping) true}} | ||
| @drop={{action (mut this.dropping) false}} | ||
| @dragleave={{action (mut this.dropping) false}} |
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.
| @buildUrl={{action this.buildUrl}} | |
| @options={{this.dropzoneOptions}} | |
| @dropzone={{false}} | |
| @addedfile={{action this.addedFile}} | |
| @uploadprogress={{action this.uploadProgress}} | |
| @success={{action this.success}} | |
| @error={{action this.error}} | |
| @dragenter={{action (mut this.dropping) true}} | |
| @dragover={{action (mut this.dropping) true}} | |
| @drop={{action (mut this.dropping) false}} | |
| @dragleave={{action (mut this.dropping) false}} | |
| @buildUrl={{this.buildUrl}} | |
| @options={{this.dropzoneOptions}} | |
| @dropzone={{false}} | |
| @addedfile={{this.addedFile}} | |
| @uploadprogress={{this.uploadProgress}} | |
| @success={{this.success}} | |
| @error={{this.error}} | |
| @dragenter={{fn (mut this.dropping) true}} | |
| @dragover={{fn (mut this.dropping) true}} | |
| @drop={{fn (mut this.dropping) false}} | |
| @dragleave={{fn (mut this.dropping) false}} |
yarn.lock is updated to update |
|
Closed in favor of #1307 |
Purpose
This PR enables admins of registration providers to upload a CSV file and create registrations in bulk.
Summary of Changes
PLACEHOLDER
Screenshot(s)
Side Effects
QA Notes