fixing issue with instructor service not being loaded in studio

was causing issues with PT exam configuration dashboard launch
This commit is contained in:
Matt Hughes
2019-03-25 16:53:32 -04:00
parent 07dfd0f8b5
commit d1f938ba44
5 changed files with 9 additions and 5 deletions

View File

@@ -98,7 +98,8 @@ setup(
"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",
"user_authn = openedx.core.djangoapps.user_authn.apps:UserAuthnConfig"
"user_authn = openedx.core.djangoapps.user_authn.apps:UserAuthnConfig",
"instructor = lms.djangoapps.instructor.apps:InstructorConfig",
],
}
)