Method: Qiita::Sdk::ApiActions#post_comment
- Defined in:
 - lib/qiita/sdk/api_actions.rb
 
#post_comment(item_id:, body:) ⇒ Object
記事に対してコメントを投稿
      44 45 46 47 48 49 50 51 52  | 
    
      # File 'lib/qiita/sdk/api_actions.rb', line 44 def post_comment(item_id:, body:) path = "/api/v2/items/#{item_id}/comments" params = { body: body } post(path, params) end  |