Added some comments.
This commit is contained in:
parent
54b8fedb5b
commit
071a3a7b4f
1 changed files with 4 additions and 2 deletions
|
|
@ -1617,8 +1617,10 @@ export const useMainStore = defineStore({
|
|||
}
|
||||
});
|
||||
},
|
||||
async loadSession(duplicate) {
|
||||
const { applicationUser, order } = this;
|
||||
async loadSession(duplicate) {
|
||||
const { applicationUser, order } = this;
|
||||
// NOTE: We are re-using the current user's saved session id (this is required on the load-session call).
|
||||
// This should be ok, but should probably validate.
|
||||
const response = await globalMethods.callHttpClient({
|
||||
method: endpoints.LoadSession.method,
|
||||
endpoint: endpoints.LoadSession.url,
|
||||
|
|
|
|||
Loading…
Reference in a new issue