Skip to content

Commit

Permalink
feat: Delete Space.getSpaceByDisplayName API - Meeds-io/MIPs#150
Browse files Browse the repository at this point in the history
This change will delete the usage of getSpaceByDisplayName API since it's not unique anymore
  • Loading branch information
boubaker committed Nov 1, 2024
1 parent f80c75d commit 896f933
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,6 @@ public static Space getSpace(String id) {
space = spaceService.getSpaceByPrettyName(id);
if (space == null) {
space = spaceService.getSpaceByGroupId("/spaces/" + id);
if (space == null) {
space = spaceService.getSpaceByDisplayName(id);
}
}
}
return space;
Expand Down

0 comments on commit 896f933

Please sign in to comment.