Remove user.provisional column.

This is leftover from a previous iteration of ATAT where inviting a user
to a portfolio would create a pending entry in the users table. This is
no longer used.
This commit is contained in:
dandds
2020-01-09 10:05:10 -05:00
parent 8fc543928d
commit a0b96402f2
4 changed files with 29 additions and 15 deletions

View File

@@ -98,9 +98,6 @@ def login_redirect():
auth_context.authenticate()
user = auth_context.get_user()
if user.provisional:
Users.finalize(user)
current_user_setup(user)
return redirect(redirect_after_login_url())