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

16 lines
423 B
PHP
Raw Normal View History

2020-07-02 02:26:43 +02:00
<?php
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
}
}