remove logged in elsewhere check

This commit is contained in:
Kenneth Kehl
2024-05-07 11:11:12 -07:00
parent 78e8dc95fe
commit 125ad7a2f7
2 changed files with 3 additions and 46 deletions

View File

@@ -141,7 +141,9 @@ class User(JSONModel, UserMixin):
)
def logged_in_elsewhere(self):
return session.get("current_session_id") != self.current_session_id
# This check is deprecated due to the transition to using login.gov.
return False
# return session.get("current_session_id") != self.current_session_id
def activate(self):
if self.is_pending: