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:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user