You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the web view, the login workflow looks like this:
Upon successful SSO, the backend will redirect the user to the auth page. The backend will provide a token param, which is a valid JWT that the frontend can use to make further calls.
The auth page makes a call to the user endpoint to get information about the currently logged in user, and stores it inUserStorage.
The page then redirects to the loading page, which makes a call to the todolists endpoint, which retrieves all todolists owned by the user. These lists are stored via TodoListStorage.
The user is finally redirected to /todolist which will show the most recently used (or first) todo list.
The text was updated successfully, but these errors were encountered:
We'll need to think about:
On the web view, the login workflow looks like this:
token
param, which is a valid JWT that the frontend can use to make further calls.UserStorage
.TodoListStorage
./todolist
which will show the most recently used (or first) todo list.The text was updated successfully, but these errors were encountered: