chore: bump version to v1.2.3 - Fix CORS & Update Notification

This commit is contained in:
dyzulk
2026-01-19 13:29:20 +07:00
parent 51ca6d3669
commit ca1fef86bd
6 changed files with 143 additions and 2 deletions

View File

@@ -15,5 +15,6 @@ $router->group(['middleware' => 'cors'], function($router) {
// Voucher Check (Code/Username in URL) - Support GET (Status Page) and POST (Login Page Check)
$router->post('/api/voucher/check/{code}', [App\Controllers\PublicStatusController::class, 'check']);
$router->get('/api/voucher/check/{code}', [App\Controllers\PublicStatusController::class, 'check']);
$router->options('/api/voucher/check/{code}', function() { return; }); // CORS Middleware handles this
});