Liking cljdoc? Tell your friends :D

cral.api.core.comments


create-commentclj

(create-comment ticket node-id body)
(create-comment ticket node-id body query-params & [opts])

Creates a comment on node node-id. You specify the comment in a body like this:

(model/map->CreateCommentBody {:content "This is a comment"))})

More info here.

Creates a comment on node `node-id`. You specify the comment in a `body` like this:
```clojure
(model/map->CreateCommentBody {:content "This is a comment"))})
```
More info [here](https://api-explorer.alfresco.com/api-explorer/?urls.primaryName=Core%20API#/comments/createComment).
sourceraw docstring

delete-commentclj

(delete-comment ticket node-id comment-id & [opts])

Deletes the comment comment-id from node node-id.
More info here.

Deletes the comment `comment-id` from node `node-id`.\
More info [here](https://api-explorer.alfresco.com/api-explorer/?urls.primaryName=Core%20API#/comments/deleteComment).
sourceraw docstring

list-commentsclj

(list-comments ticket node-id)
(list-comments ticket node-id query-params & [opts])

Gets a list of comments for the node node-id, sorted chronologically with the newest comment first.
More info here.

Gets a list of comments for the node `node-id`, sorted chronologically with the newest comment first.\
More info [here](https://api-explorer.alfresco.com/api-explorer/?urls.primaryName=Core%20API#/comments/listComments).
sourceraw docstring

update-commentclj

(update-comment ticket node-id comment-id body)
(update-comment ticket node-id comment-id body query-params & [opts])

Updates an existing comment comment-id on node node-id.
More info here.

Updates an existing comment `comment-id` on node `node-id`.\
More info [here](https://api-explorer.alfresco.com/api-explorer/?urls.primaryName=Core%20API#/comments/updateComment).
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close