Slack v0.0.9 Slack.File.Comment
Functions for working with comments on files
Summary
Functions
Specs
add(Slack.Client.t, Keyword.t) :: Slack.response
Add a comment to an existing file.
https://api.slack.com/methods/files.comments.add
Examples
Slack.client(token)
|> Slack.File.Comment.add(file: "F1234467890", comment: "Foo")
Specs
delete(Slack.Client.t, Keyword.t) :: Slack.response
Delete a comment on a file.
https://api.slack.com/methods/files.comments.delete
Examples
Slack.client(token)
|> Slack.File.Comment.delete(file: "F1234467890", id: "Fc1234567890")
Specs
edit(Slack.Client.t, Keyword.t) :: Slack.response
Edit a comment on a file.
https://api.slack.com/methods/files.comments.edit
Examples
Slack.client(token)
|> Slack.File.Comment.edit(
file: "F1234467890", id: "Fc1234567890", comment: "Hello")