We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bea93c4 commit d76cd63Copy full SHA for d76cd63
1 file changed
src/Controller/API/APITempController.php
@@ -9,6 +9,7 @@
9
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
10
use Symfony\Component\HttpFoundation\JsonResponse;
11
use Symfony\Component\HttpFoundation\Request;
12
+use Symfony\Component\HttpFoundation\RedirectResponse;
13
14
class APITempController extends AbstractController
15
{
@@ -55,6 +56,7 @@ public function startTransmission(Request $request) {
55
56
$em->flush();
57
}
58
- return new JsonResponse(['version' => $this->getParameter('api_version'), 'status' => 200, 'data' => []]);
59
+ // Redirect to https://spinsha.re/speen-orbital-os/end.php
60
+ return $this->redirect("https://spinsha.re/speen-orbital-os/end.php");
61
62
0 commit comments