Skip to content
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

Fixing django 2.1 probs in student management commands #23587

Merged
merged 4 commits into from
Apr 3, 2020

Commits on Apr 2, 2020

  1. Requiring at least one args in a mutually exclusive group to be set

    bulk_change_enrollment requires one of agrs: org or course to be set
    for it to function correctly.
    jinder1s committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    76ea339 View commit details
    Browse the repository at this point in the history
  2. Creating new function to verify initial password hash

    Starting with django 2.1, the function is_password_usable no longer checks whether encode
    is a valid password created by a django hasher(hasher in  PASSWORD_HASHERS setting)
    
    Adding this function to create constant behavior as we upgrade django versions
    jinder1s committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    00edff5 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2020

  1. quality fix

    jinder1s committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    bbca269 View commit details
    Browse the repository at this point in the history
  2. review fixes

    jinder1s committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    8785a95 View commit details
    Browse the repository at this point in the history