Skip to content

Commit

Permalink
fix: team relationship slug update
Browse files Browse the repository at this point in the history
  • Loading branch information
tlawrie committed Aug 8, 2024
1 parent ddcfa4b commit 4d2e9bd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/io/boomerang/service/TeamServiceImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,9 @@ public Team patch(String team, TeamRequest request) {
teamEntity.setName(request.getName());
updatedName = true;
}
if (request.getDisplayName() != null && !request.getDisplayName().isBlank()) {
teamEntity.setDisplayName(request.getDisplayName());
}
if (request.getStatus() != null) {
teamEntity.setStatus(request.getStatus());
}
Expand Down

0 comments on commit 4d2e9bd

Please sign in to comment.