Method: Slack::Endpoint::Files#files_comments_edit
- Defined in:
- lib/slack/endpoint/files.rb
#files_comments_edit(options = {}) ⇒ Object
Edit an existing file comment.
50 51 52 53 54 55 |
# File 'lib/slack/endpoint/files.rb', line 50 def files_comments_edit(={}) throw ArgumentError.new("Required arguments :comment missing") if [:comment].nil? throw ArgumentError.new("Required arguments :file missing") if [:file].nil? throw ArgumentError.new("Required arguments :id missing") if [:id].nil? post("files.comments.edit", ) end |