Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added prison filter to get person risk category endpoint #740

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

wcdkj
Copy link
Contributor

@wcdkj wcdkj commented Mar 11, 2025

No description provided.

if (nomisNumber != null) {
personRiskCategories = nomisGateway.getRiskCategoriesForPerson(id = nomisNumber)
if (personResponse.data?.nomisNumber != null) {
personRiskCategories = nomisGateway.getRiskCategoriesForPerson(id = personResponse.data.nomisNumber)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We've been doing something like this on the other service layers
val nomisNumber = personResponse.data?.nomisNumber ?: return Response( data = emptyList(), errors = listOf(UpstreamApiError(UpstreamApi.NOMIS, UpstreamApiError.Type.ENTITY_NOT_FOUND)), )
Are we potentially missing handling that error this way?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is mirroring existing behavior, anxious to change this in the case of something using it as is - we should talk about this

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants