Method |
Description |
|
deleteCommentAction ( integer $id ) : FOS\RestBundle\View\View |
Removes a comment. |
|
deletePostAction ( integer $id ) : FOS\RestBundle\View\View |
Removes a post. |
|
editCommentAction ( Request $request, Request $id ) : FOS\RestBundle\View\View | Response |
Partial update of an existing Comment. |
|
editCommentFormAction ( $id ) : FOS\RestBundle\View\View |
Presents the form for partial update of an existing Comment. |
|
editPostAction ( Request $request, integer $id ) : FOS\RestBundle\View\View |
Partial update of an existing Post. |
|
editPostFormAction ( $id ) : FOS\RestBundle\View\View |
Presents the form for partial update of an existing Post. |
|
getCommentAction ( integer $id ) : FOS\RestBundle\View\View |
Get a specific comment. |
|
getCommentsAction ( ) : FOS\RestBundle\View\View |
List all comments. |
|
getCommentsFromPostAction ( integer $id ) : FOS\RestBundle\View\View |
List all comments from a post. |
|
getPostAction ( integer $id ) : FOS\RestBundle\View\View |
Get a specific post. |
|
getPostsAction ( ) : FOS\RestBundle\View\View |
List all posts. |
|
indexApiAction ( ) : FOS\RestBundle\View\View |
List all resources available. |
|
newCommentAction ( Request $request, integer $id ) : FOS\RestBundle\View\View |
Creates a new comment from the submitted data. |
|
newCommentFormAction ( ) : Form |
Presents the form to use to create a new comment. |
|
newPostAction ( Request $request ) : FOS\RestBundle\View\View |
Creates a new post from the submitted data. |
|
newPostFormAction ( ) : Form |
Presents the form to use to create a new post. |
|
updateCommentAction ( Request $request, integer $id ) : FOS\RestBundle\View\View | Response |
Update existing comment from the submitted data or create a new comment at a specific location. |
|
updatePostAction ( Request $request, integer $id ) : FOS\RestBundle\View\View |
Update existing post from the submitted data or create a new post at a specific location. |
|