invoiceninja/app/Http/Controllers/SchedulerController.php

25 lines
697 B
PHP
Raw Normal View History

2020-07-02 10:26:43 +10:00
<?php
2023-01-13 12:43:38 +11:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2023-01-13 12:43:38 +11:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
2020-07-02 10:26:43 +10:00
namespace App\Http\Controllers;
class SchedulerController extends Controller
{
public function index()
{
if (auth()->user()->company()->account->latest_version == '0.0.0') {
2021-01-25 11:57:49 +11:00
return response()->json(['message' => ctrans('texts.scheduler_has_never_run')], 400);
} else {
2021-01-25 11:57:49 +11:00
return response()->json(['message' => ctrans('texts.scheduler_has_run')], 200);
}
2020-07-02 10:26:43 +10:00
}
}