LinkProjectToTeam links a project to a team.
(projectID string, teamID string)
| 1626 | |
| 1627 | // LinkProjectToTeam links a project to a team. |
| 1628 | func (c *Client) LinkProjectToTeam(projectID string, teamID string) error { |
| 1629 | var mutation linkProjectToTeamMutation |
| 1630 | variables := map[string]interface{}{ |
| 1631 | "input": githubv4.LinkProjectV2ToTeamInput{ |
| 1632 | ProjectID: githubv4.String(projectID), |
| 1633 | TeamID: githubv4.ID(teamID), |
| 1634 | }, |
| 1635 | } |
| 1636 | |
| 1637 | return c.Mutate("LinkProjectV2ToTeam", &mutation, variables) |
| 1638 | } |
| 1639 | |
| 1640 | // UnlinkProjectFromRepository unlinks a project from a repository. |
| 1641 | func (c *Client) UnlinkProjectFromRepository(projectID string, repoID string) error { |