Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save samuels410/ab3fa1d7b63cd8f5e67a6b37dbea237e to your computer and use it in GitHub Desktop.
Save samuels410/ab3fa1d7b63cd8f5e67a6b37dbea237e to your computer and use it in GitHub Desktop.
canvas lms remove unaccepted course invitations
course_ids=[1,2]
puts course_ids.size
course_ids.each do |course_id|
course=Course.find(course_id)
puts course.enrollments.where(workflow_state: 'invited').count
course.enrollments.where(workflow_state: 'invited').each do |enrollment|
enrollment.workflow_state='deleted'
enrollment.save!
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment