Implemented comments like update status.

This commit is contained in:
Pierre 2018-01-27 18:56:06 +01:00
parent bb0dc94d96
commit b1dd002942

View File

@ -54,6 +54,17 @@ class likesController {
break;
//In case of comments
case "comment":
//Extract informations
$id = getPostCommentIDWithAccess("id");
$componentType = Likes::LIKE_COMMENT;
break;
//Default case : error
default:
Rest_fatal_error(404, "Specifed component type currently not supported !");