Open
Conversation
… in their userSession. A few endpoints seem to be working with the userHasCourseAccess function but some other endpoints don't have the function yet. We should comb through each endpoint and add that function, if necessary
…ception handling and messages
…e progress loader color
…s to have animation and be focused on tab
Contributor
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
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.

Summary
Adds a button to the
Review Filespage that allows for files to be deleted in bulk. Users are able to select all files or individually select files to deleteThe deletion is done by batch and takes in a payload of files to be deleted once at a time. This is done to avoid hitting the limit on the canvas API. By default 10 files can be deleted at a time. This means if there are 22 unused files in a course, 10 files go get deleted, then the next 10 and then finally the last 2
Testing
Delete Unused Filesbutton on the top rightFeedback
Functionally the implementation was working so I am looking mostly for UI/flow feedback. This is a significant feature that maybe used a lot and making the flow simple, easy to understand and clean is important.