mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-01 21:00:58 +00:00
9 lines
293 B
PHP
9 lines
293 B
PHP
<?php
|
|
|
|
use App\Platform\Operations\Http\AppVersionController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
// Build probe. Unauthenticated on purpose: the SPA shell and the updater both
|
|
// read it before any session or company context exists.
|
|
Route::get('app/version', AppVersionController::class);
|