GetAssignees returns all users that have read access and can be assigned to issues of the repository,
()
| 535 | // GetAssignees returns all users that have read access and can be assigned to issues |
| 536 | // of the repository, |
| 537 | func (r *Repository) GetAssignees() (_ []*User, err error) { |
| 538 | return r.getAssignees(x) |
| 539 | } |
| 540 | |
| 541 | // GetAssigneeByID returns the user that has write access of repository by given ID. |
| 542 | func (r *Repository) GetAssigneeByID(userID int64) (*User, error) { |
no test coverage detected