Skip to content

Commit

Permalink
fixed some missing renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
jeppekroghitk committed Jan 4, 2024
1 parent 9263a17 commit e2e816c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Controller/SprintReportController.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function index(Request $request): Response
'csrf_protection' => false,
]);

$projectCollection = $this->projectTracker->getAllProjectsV2();
$projectCollection = $this->projectTracker->getSprintReportProjects();

$projectChoices = [];

Expand Down Expand Up @@ -66,8 +66,8 @@ public function index(Request $request): Response
}

if (!empty($requestData['projectId'])) {
$project = $this->projectTracker->getProjectV2($requestData['projectId']);
$versionCollection = $this->projectTracker->getProjectVersions($requestData['projectId']);
$project = $this->projectTracker->getSprintReportProject($requestData['projectId']);
$versionCollection = $this->projectTracker->getSprintReportProjectVersions($requestData['projectId']);

$versionChoices = [];
foreach ($versionCollection->versions as $version) {
Expand Down

0 comments on commit e2e816c

Please sign in to comment.