Method: Slack::Endpoint::Files#files_comments_add
- Defined in:
- lib/slack/endpoint/files.rb
#files_comments_add(options = {}) ⇒ Object
Add a comment to an existing file.
16 17 18 19 20 |
# File 'lib/slack/endpoint/files.rb', line 16 def files_comments_add(={}) throw ArgumentError.new("Required arguments :comment missing") if [:comment].nil? throw ArgumentError.new("Required arguments :file missing") if [:file].nil? post("files.comments.add", ) end |