mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-19 17:48:36 +00:00
Fix API /os
This commit is contained in:
parent
25ff23d98d
commit
162b708dbf
1 changed files with 2 additions and 1 deletions
|
@ -190,7 +190,8 @@ class ApiController extends Controller
|
||||||
|
|
||||||
protected function getAllOs()
|
protected function getAllOs()
|
||||||
{
|
{
|
||||||
$os = OS::allOS()->toJson(JSON_PRETTY_PRINT);
|
$os = OS::allOS();
|
||||||
|
$os = json_encode($os, JSON_PRETTY_PRINT);
|
||||||
return response($os, 200);
|
return response($os, 200);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue