mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 22:48:18 +00:00
Final things.
This commit is contained in:
13
routes/api-noauth.php
Normal file
13
routes/api-noauth.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
// Cron job API routes:
|
||||
Route::group(
|
||||
[
|
||||
'namespace' => 'FireflyIII\Api\V1\Controllers\System', 'prefix' => '',
|
||||
'as' => 'api.v1.cron.'],
|
||||
static function () {
|
||||
Route::get('{cliToken}', ['uses' => 'CronController@cron', 'as' => 'index']);
|
||||
}
|
||||
);
|
Reference in New Issue
Block a user