Tentacat v2.2.0 Tentacat.Repositories.Projects View Source
Link to this section Summary
Link to this section Functions
Link to this function
create(client, owner, repo, options)
View Sourcecreate(Tentacat.Client.t(), binary(), binary(), map()) :: Tentacat.response()
Create a new project for a repository
Possible values for options:
- %{name: "name of project board"}
- %{body: "description of the project"}
Example
Tentacat.Repositories.Projects.create client, "elixir-lang", "elixir", %{name: "tentacat", body: "project board for tentacat"}
More info at: https://developer.github.com/v3/projects/#create-a-repository-project
Link to this function
list(client, owner, repo)
View Sourcelist(Tentacat.Client.t(), binary(), binary()) :: Tentacat.response()
Lists the projects in a repository
Example
Tentacat.Repositories.Projects.list client, "elixir-lang", "elixir"
More info at: https://developer.github.com/v3/projects/#list-repository-projects