Restructure
New Journal entries
Colour tabs update with wind
This commit is contained in:
fraxle
2026-08-31 15:12:45 +01:00
parent 47818fba33
commit 71860b9dd9
40 changed files with 3430 additions and 443 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
// GET -> { ok:true, user: { email } } if signed in, else { ok:true, user:null }.
// Always 200 - this is a status check, not an auth gate.
require __DIR__ . '/../lib/bootstrap.php';
$user = current_user();
json_out(['ok' => true, 'user' => $user ? ['email' => $user['email']] : null]);