read comment working
This commit is contained in:
parent
583daa1759
commit
39fc379541
12 changed files with 125 additions and 78 deletions
28
public/site/plugins/comments/routes/read.php
Normal file
28
public/site/plugins/comments/routes/read.php
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'pattern' => '(:all)read-comment.json',
|
||||
'method' => 'POST',
|
||||
'action' => function () {
|
||||
$json = file_get_contents('php://input');
|
||||
$data = json_decode($json);
|
||||
|
||||
try {
|
||||
$newNotification = kirby()->user()->readNotification($data->notificationId);
|
||||
if ($newNotification) {
|
||||
return [
|
||||
"success" => "Notification read.",
|
||||
"data" => $newNotification
|
||||
];
|
||||
} else {
|
||||
throw new Exception("Can't find corresponding notification.", 1);
|
||||
}
|
||||
} catch (\Throwable $th) {
|
||||
return [
|
||||
"error" => $th->getMessage(),
|
||||
"notificationId" => $data->notificationId,
|
||||
"userName" => kirby()->user()->name()->value()
|
||||
];
|
||||
}
|
||||
}
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue