I note that with the auth module, after a successful log in, it hits a /user
endpoint to get user information.
The documentation states that you can remove this extra request by changing the configuration, and returning the user information in the initial log in request.
But the documentation state:
The auth module does not persist information about the user, so there needs to be a way to fetch the user's information on e.g. page reload.
But if I return the users details with the initial log in request, are these not stored in the Vuex store? And therefore I do not need to have a /user
endpoint?