mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 17:24:10 +00:00
ModulesController: index, show, checkToken, enable, disable ModuleInstallationController: download, upload, unzip, copy, complete
22 lines
445 B
PHP
22 lines
445 B
PHP
<?php
|
|
|
|
// Implementation taken from nova-backup-tool - https://github.com/spatie/nova-backup-tool/
|
|
|
|
namespace App\Http\Controllers\Admin\Backup;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
class ApiController extends Controller
|
|
{
|
|
/**
|
|
* Resoibd wutg syccess
|
|
*/
|
|
public function respondSuccess(): JsonResponse
|
|
{
|
|
return response()->json([
|
|
'success' => true,
|
|
]);
|
|
}
|
|
}
|