Skip to content

Commit

Permalink
Add engineUuid in Session.toJSON to be backward compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
manuquentin committed Oct 2, 2023
1 parent 0d9e29e commit edded4f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/domain/Session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,4 +276,10 @@ export default class Session {
return this.stackUuid;
}

toJSON() {
return {
...this,
engineUuid: this.engineUuid,
};
}
}

0 comments on commit edded4f

Please sign in to comment.