Skip to content

Commit

Permalink
fix: resolved conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
julesartd committed Mar 7, 2024
2 parents ef0cfe4 + 80665a3 commit f74f0b5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"dart.flutterSdkPath": "C:\\flutter"
}
4 changes: 4 additions & 0 deletions backend/src/Controller/Api/TimetableController.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ public function index(Request $request): JsonResponse
$parsedJson = $this->timetableService->fetchAndParseData($xmlUrl);
return $this->json($parsedJson);
} else {
<<<<<<< HEAD
return $this->json(['error' => 'Invalid XML url'], JsonResponse::HTTP_BAD_REQUEST);
=======
return $this->json(['error' => 'Invalid xml url'], JsonResponse::HTTP_BAD_REQUEST);
>>>>>>> dev
}
}
}
3 changes: 3 additions & 0 deletions frontend/app_student/.fvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"flutter": "3.19.2"
}
3 changes: 3 additions & 0 deletions frontend/app_student/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,6 @@ app.*.map.json
/android/app/debug
/android/app/profile
/android/app/release

# FVM Version Cache
.fvm/
3 changes: 3 additions & 0 deletions frontend/app_student/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"dart.flutterSdkPath": ".fvm\\versions\\3.19.2"
}

0 comments on commit f74f0b5

Please sign in to comment.