remove /login_post endpoint

- retires toggle DISABLE_DEPRECATED_LOGIN_POST
- permanently removes /login_post

Now that studio signin has been retired, we are able to remove the
unused /login_post endpoint.

ARCH-1253
This commit is contained in:
Robert Raposa
2019-12-12 17:09:18 -05:00
parent 9f72c69e8a
commit a9825889bf
2 changed files with 0 additions and 20 deletions

View File

@@ -62,13 +62,6 @@ urlpatterns = [
]
if not getattr(settings, 'DISABLE_DEPRECATED_LOGIN_POST', False):
# TODO: Remove login_post once it no longer has real traffic.
# It was only used by old Studio sign-in and some miscellaneous callers, which should no longer be in use.
urlpatterns += [
url(r'^login_post$', login.login_user, name='login_post'),
]
# password reset django views (see above for password reset views)
urlpatterns += [
url(