mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
9 lines
222 B
PHP
9 lines
222 B
PHP
<?php
|
|
require_once __DIR__ . '/validate_endpoint.php';
|
|
// Check that user is an admin
|
|
if ($userId !== 1) {
|
|
die(json_encode([
|
|
"success" => false,
|
|
"message" => translate('error', $i18n)
|
|
]));
|
|
} |