Remove buffering for legacy api

This commit is contained in:
laf
2018-05-10 12:43:14 +01:00
parent e4bc556874
commit 4267197430

View File

@@ -15,10 +15,6 @@ class LegacyController extends Controller
public function api($path = '')
{
ob_start();
include base_path('html/legacy_api_v0.php');
$html = ob_get_clean();
return response($html);
}
}