Is there a workaround to prevent concurrent user signs while using Azure AD for authentication The below code snippet is likely to work only if the default sign in mechanism is used ``` def sign_in(user) user.reset_remember_token! if user super end ``` Thanks