flexisip-account-manager/flexiapi/app/Http/Controllers/Api/PingController.php
Timothée Jaussoin d2bfc6e9f9 Integrate FlexiAPI in the RPM package (logs, conf, env…)
Update the GitlabCI and fix integration issues
Add a /api/ping authenticated endpoint
2020-02-10 10:52:28 +01:00

14 lines
233 B
PHP

<?php
namespace App\Http\Controllers\Api;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class PingController extends Controller
{
public function ping(Request $request)
{
return 'pong';
}
}