List and create project comments

We have added 2 new endpoints to list and create project comments.

Listing the comments on a project can be called like this:

GET /v2/projects/:id/comments

Adding a new project comment to a project can be called like this:

POST /v2/projects/:id/comments

{
   "comment": {
      "content":"Make sure to paint the exterior walls."
   }
}