23 lines
697 B
PHP
23 lines
697 B
PHP
<?php
|
|
require_once '../config/config.php';
|
|
requireAuthentication();
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
|
|
try {
|
|
$input = json_decode(file_get_contents('php://input'), true) ?: $_POST;
|
|
$id = isset($input['id']) ? intval($input['id']) : 0;
|
|
if (!$id) {
|
|
http_response_code(400);
|
|
echo json_encode(['success' => false, 'error' => 'id required']);
|
|
exit;
|
|
}
|
|
|
|
$db = Database::getInstance();
|
|
$db->update('notifications', ['is_read' => 1], 'id = :id', ['id' => $id]);
|
|
|
|
echo json_encode(['success' => true]);
|
|
} catch (Exception $e) {
|
|
http_response_code(500);
|
|
echo json_encode(['success' => false, 'error' => $e->getMessage()]);
|
|
}
|