Skip to content

Instantly share code, notes, and snippets.

@Stoakes
Created January 6, 2019 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Stoakes/f2a8c408bbaebc812a7618f9428a16f3 to your computer and use it in GitHub Desktop.
Save Stoakes/f2a8c408bbaebc812a7618f9428a16f3 to your computer and use it in GitHub Desktop.
Fos comment routes
fos_comment_new_threads GET ANY ANY /api/threads/new.{_format}
fos_comment_edit_thread_commentable GET ANY ANY /api/threads/{id}/commentable/edit.{_format}
fos_comment_new_thread_comments GET ANY ANY /api/threads/{id}/comments/new.{_format}
fos_comment_remove_thread_comment GET ANY ANY /api/threads/{id}/comments/{commentId}/remove.{_format}
fos_comment_edit_thread_comment GET ANY ANY /api/threads/{id}/comments/{commentId}/edit.{_format}
fos_comment_new_thread_comment_votes GET ANY ANY /api/threads/{id}/comments/{commentId}/votes/new.{_format}
fos_comment_get_thread GET ANY ANY /api/threads/{id}.{_format}
fos_comment_get_threads GET ANY ANY /api/threads.{_format}
fos_comment_post_threads POST ANY ANY /api/threads.{_format}
fos_comment_patch_thread_commentable PATCH ANY ANY /api/threads/{id}/commentable.{_format}
fos_comment_get_thread_comment GET ANY ANY /api/threads/{id}/comments/{commentId}.{_format}
fos_comment_patch_thread_comment_state PATCH ANY ANY /api/threads/{id}/comments/{commentId}/state.{_format}
fos_comment_put_thread_comments PUT ANY ANY /api/threads/{id}/comments/{commentId}.{_format}
fos_comment_get_thread_comments GET ANY ANY /api/threads/{id}/comments.{_format}
fos_comment_post_thread_comments POST ANY ANY /api/threads/{id}/comments.{_format}
fos_comment_get_thread_comment_votes GET ANY ANY /api/threads/{id}/comments/{commentId}/votes.{_format}
fos_comment_post_thread_comment_votes POST ANY ANY /api/threads/{id}/comments/{commentId}/votes.{_format}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment