Sha256: 3f984a21a6d568761f950622d5d4d3d5c2dae8d490f1e65d62fe3a0e306bb312
Contents?: true
Size: 626 Bytes
Versions: 3
Compression:
Stored size: 626 Bytes
Contents
# ## Comments # # Provides access to comments resource on todo or todolist level # # #### Create a new todolist comment # `POST /projects/123/todolist/456/comments.json` # # client.projects(123).todolists(456).comments.create!(content: 'New comment') # # #### Create a new todo comment # `POST /projects/123/todo/456/comments.json` # # client.projects(123).todos(456).comments.create!(content: 'New comment') # # # #### Delete the comment # `DELETE /projects/123/comments/456.json` # # client.projects(123).comments(456).delete! # module Bcx module Resources class Comment < Rapidash::Base end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bcx-1.1.0 | lib/bcx/resources/comment.rb |
bcx-1.0.0 | lib/bcx/resources/comment.rb |
bcx-0.4.0 | lib/bcx/resources/comment.rb |