View Source Tentacat.Repositories.Projects (Tentacat v2.4.0)
Summary
Functions
@spec create(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
@spec list(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