- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
8 lines
256 B
PHP
8 lines
256 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\Api\OwnTracksController;
|
|
use App\Http\Middleware\AuthenticateOwntracks;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::post('/owntracks', [OwnTracksController::class, 'store'])
|
|
->middleware(AuthenticateOwntracks::class);
|