mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 16:19:19 +02:00
12 lines
309 B
PHP
12 lines
309 B
PHP
<?php
|
|
/**
|
|
* Legacy endpoint — no longer used (blocks are now static, non-sortable).
|
|
* Returns 204 No Content for backwards compatibility.
|
|
*/
|
|
require_once __DIR__ . '/../../../bootstrap.php';
|
|
require_once __DIR__ . '/../../../src/AdminAuth.php';
|
|
AdminAuth::requireLogin();
|
|
|
|
http_response_code(204);
|
|
exit;
|