From 72434e22b3058b40699dd16ad7a6683dfeec108c Mon Sep 17 00:00:00 2001 From: Christoph Meyer <35367476+Christoph-Meyer@users.noreply.github.com> Date: Thu, 25 Mar 2021 16:47:21 +0100 Subject: [PATCH] Develop (#291) * Add branching section into CONTRIBUTING.md - Merge in develop (#286) * Clean up (#282) * removed hardcoded URL * Removed unnecessary endpoint * Add illustrations for feature and hotfix branches to use in CONTRIBUTING.md Image source: https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow. License checked * Add branching section into to use in CONTRIBUTING.md Describe the use of Gitflow in SonarQuest Co-authored-by: Michael Landreh * Fix #270 - Password is returned (#287) * Change input color of login input fields * Add necessary fields into UserDto * Fix Nullpointer Exceptions in world service This occurs when a world should be found by an id that is null * Change return type of 'getUser' and 'users' into UserDto * Adjust getUser to be null safe * Fixed Issue#290 Co-authored-by: Nils <48205130+nuhrberg@users.noreply.github.com> Co-authored-by: Michael Landreh --- .../com/viadee/sonarquest/services/ExternalRessourceService.java | 1 - 1 file changed, 1 deletion(-) diff --git a/sonarQuest-backend/src/main/java/com/viadee/sonarquest/services/ExternalRessourceService.java b/sonarQuest-backend/src/main/java/com/viadee/sonarquest/services/ExternalRessourceService.java index 006d6427..ff55f611 100644 --- a/sonarQuest-backend/src/main/java/com/viadee/sonarquest/services/ExternalRessourceService.java +++ b/sonarQuest-backend/src/main/java/com/viadee/sonarquest/services/ExternalRessourceService.java @@ -187,7 +187,6 @@ private SonarQubeIssueRessource getSonarQubeIssuesWithDefaultSeverities(final Re .withComponentKeys(projectKey) .withTypes(SonarQubeIssueType.CODE_SMELL) .withSeverities(issueSeverities) - .withOrganization(organizationKey) .pageSize(maxNumberOfIssuesOnPage) .pageIndex(1) .build();