GetWebhookByRepoID returns the milestone in a repository.
(repoID, id int64)
| 163 | |
| 164 | // GetWebhookByRepoID returns the milestone in a repository. |
| 165 | func GetMilestoneByRepoID(repoID, id int64) (*Milestone, error) { |
| 166 | return getMilestoneByRepoID(x, repoID, id) |
| 167 | } |
| 168 | |
| 169 | // GetMilestonesByRepoID returns all milestones of a repository. |
| 170 | func GetMilestonesByRepoID(repoID int64) ([]*Milestone, error) { |
no test coverage detected