Skip to content

Commit

Permalink
Check for things in common with BE (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnyfarrar committed Jun 20, 2024
1 parent 38e6540 commit 02cdb5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion server/routes/handlers/caseSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ const moveToResulted = async (res, req, utils, templateValues) => {
courtCode,
defendantId,
correlationId,
userId: res.locals.user.uuid
userId: res.locals.user.uuid,
user: res.locals.user
}
)

Expand Down
3 changes: 2 additions & 1 deletion server/routes/handlers/outcomes/getMoveToResultedHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const getMoveToResultedHandler = caseService => async (req, res) => {
courtCode,
defendantId,
correlationId,
userId: res.locals.user.uuid
userId: res.locals.user.uuid,
user: res.locals.user
}
)

Expand Down

0 comments on commit 02cdb5a

Please sign in to comment.