Add password_policy checks to login views

LEARNER-4869
This commit is contained in:
Anthony Mangano
2018-04-19 10:42:32 -04:00
committed by Michael Terry
parent 0237d58350
commit 07609e7d75
18 changed files with 709 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ from setuptools import setup
setup(
name="Open edX",
version="0.9",
version="0.10",
install_requires=["setuptools"],
requires=[],
# NOTE: These are not the names we should be installing. This tree should
@@ -75,6 +75,7 @@ setup(
"bookmarks = openedx.core.djangoapps.bookmarks.apps:BookmarksConfig",
"zendesk_proxy = openedx.core.djangoapps.zendesk_proxy.apps:ZendeskProxyConfig",
"instructor = lms.djangoapps.instructor.apps:InstructorConfig",
"password_policy = openedx.core.djangoapps.password_policy.apps:PasswordPolicyConfig",
],
"cms.djangoapp": [
"ace_common = openedx.core.djangoapps.ace_common.apps:AceCommonConfig",
@@ -83,6 +84,7 @@ setup(
"theming = openedx.core.djangoapps.theming.apps:ThemingConfig",
"bookmarks = openedx.core.djangoapps.bookmarks.apps:BookmarksConfig",
"zendesk_proxy = openedx.core.djangoapps.zendesk_proxy.apps:ZendeskProxyConfig",
"password_policy = openedx.core.djangoapps.password_policy.apps:PasswordPolicyConfig",
],
}
)