Work progress on notifications.

This commit is contained in:
Pierre
2018-02-17 19:25:33 +01:00
parent b9cb4e50fc
commit 1194bb4b71
3 changed files with 250 additions and 1 deletions

View File

@ -45,6 +45,18 @@ class commentsController {
if($commentID < 1)
Rest_fatal_error(500, "An error occured while trying to create comment !");
//Create a notification
$notification = new Notification();
$notification->set_time(time());
$notification->set_from_user_id(userID);
$notification->set_on_elem_id($postID);
$notification->set_on_elem_type(Notification::POST);
$notification->set_type(Notification::COMMENT_CREATED);
//Push notification
components()->notifications->push($notification);
//Success
return array(
"success" => "The comment was created!",