defmodule Tentacat.Pulls.Comments.Reactions do
import Tentacat
alias Tentacat.Client
@doc """
List the reactions on a issue
## Example
Tentacat.Pulls.Comments.Reactions.list "elixir-lang" , "elixir", "3"
More info at: https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment
"""
@spec list(Client.t(), binary, binary, binary | integer) :: Tentacat.response()
def list(client \\ %Client{}, owner, repo, comment_id) do
get("repos/#{owner}/#{repo}/pulls/comments/#{comment_id}/reactions", client)
end
@doc """
Create a reaction on an issue
Reaction Request body example:
%{ content: "heart" }
### Example
Tentacat.Pulls.Comments.Reactions.create client, "elixir-lang", "elixir", "3"
More info at: https://developer.github.com/v3/reactions/#create-reaction-for-a-pull-request-review-comment
"""
@spec create(Client.t(), binary, binary, binary | integer, map) :: Tentacat.response()
def create(client, owner, repo, comment_id, body) when is_map(body) do
post("repos/#{owner}/#{repo}/pulls/comments/#{comment_id}/reactions", client, body)
end
end