1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Controllers/SchedulerController.php

25 lines
697 B
PHP
Raw Normal View History

2020-07-02 02:26:43 +02:00
<?php
2023-01-13 02:43:38 +01:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2023-01-13 02:43:38 +01:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
2020-07-02 02:26:43 +02: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 01:57:49 +01:00
return response()->json(['message' => ctrans('texts.scheduler_has_never_run')], 400);
} else {
2021-01-25 01:57:49 +01:00
return response()->json(['message' => ctrans('texts.scheduler_has_run')], 200);
}
2020-07-02 02:26:43 +02:00
}
}