467363d651
Made-with: Cursor
17 lines
353 B
PHP
17 lines
353 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/_common.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'GET') {
|
|
json_response(['ok' => false, 'error' => 'Use GET'], 405);
|
|
}
|
|
|
|
$a = current_admin();
|
|
json_response([
|
|
'ok' => true,
|
|
'loggedIn' => $a !== null,
|
|
'needsSetup' => store_needs_setup(),
|
|
'admin' => $a ? strip_admin($a) : null,
|
|
]);
|