mirror of
https://github.com/NamelessMC/Nameless
synced 2026-08-18 06:29:04 -04:00
8 lines
191 B
PHP
8 lines
191 B
PHP
<?php
|
|
if (!$user->isLoggedIn()) {
|
|
die(json_encode(['value' => 0]));
|
|
}
|
|
|
|
$alerts = Alert::getAlerts($user->data()->id);
|
|
|
|
echo json_encode(['value' => count($alerts), 'alerts' => $alerts]);
|