Release v1.4.0 #146

Merged
myrmidex merged 71 commits from release/v1.4.0 into main 2026-08-15 00:36:54 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 1b95e9f8aa - Show all commits

View file

@ -47,7 +47,7 @@
Route::fallback(function () { Route::fallback(function () {
return response()->json([ return response()->json([
'message' => 'This is the FFR API backend. Use /api/v1/* endpoints or check the React frontend.', 'message' => 'Not found. The FFR interface is at /dashboard; API endpoints are under /api/v1.',
'api_base' => '/api/v1', 'api_base' => '/api/v1',
], 404); ], 404);
}); });

View file

@ -43,7 +43,7 @@ public function test_fallback_route_returns_api_message(): void
$response = $this->get('/nonexistent-route'); $response = $this->get('/nonexistent-route');
$response->assertStatus(404); $response->assertStatus(404);
$response->assertJson([ $response->assertJson([
'message' => 'This is the FFR API backend. Use /api/v1/* endpoints or check the React frontend.', 'message' => 'Not found. The FFR interface is at /dashboard; API endpoints are under /api/v1.',
'api_base' => '/api/v1', 'api_base' => '/api/v1',
]); ]);
} }