| 
									
										
										
										
											2021-03-21 11:06:08 +01:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2024-11-25 04:18:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-28 11:43:07 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |  * api-noauth.php | 
					
						
							|  |  |  |  * Copyright (c) 2021 james@firefly-iii.org | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of Firefly III (https://github.com/firefly-iii). | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as | 
					
						
							|  |  |  |  * published by the Free Software Foundation, either version 3 of the | 
					
						
							|  |  |  |  * License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <https://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-03-21 11:06:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-24 17:15:46 +02:00
										 |  |  | use Illuminate\Support\Facades\Route; | 
					
						
							| 
									
										
										
										
											2021-03-21 11:06:08 +01:00
										 |  |  | // Cron job API routes:
 | 
					
						
							| 
									
										
										
										
											2025-01-25 04:51:09 +01:00
										 |  |  | use FireflyIII\Http\Middleware\AcceptHeaders; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-21 11:06:08 +01:00
										 |  |  | Route::group( | 
					
						
							|  |  |  |     [ | 
					
						
							| 
									
										
										
										
											2025-01-26 14:33:19 +01:00
										 |  |  |         'namespace'  => 'FireflyIII\Api\V1\Controllers\System', | 
					
						
							|  |  |  |         'prefix'     => '', | 
					
						
							|  |  |  |         'as'         => 'api.v1.cron.', | 
					
						
							| 
									
										
										
										
											2025-01-25 04:51:09 +01:00
										 |  |  |         'middleware' => [AcceptHeaders::class], | 
					
						
							| 
									
										
										
										
											2023-01-17 20:09:57 +01:00
										 |  |  |     ], | 
					
						
							| 
									
										
										
										
											2023-12-21 05:06:17 +01:00
										 |  |  |     static function (): void { | 
					
						
							| 
									
										
										
										
											2021-03-21 11:06:08 +01:00
										 |  |  |         Route::get('{cliToken}', ['uses' => 'CronController@cron', 'as' => 'index']); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-03-28 11:43:07 +02:00
										 |  |  | ); |