getAssignees returns a list of users who can be assigned to issues in this repository.
(e Engine)
| 529 | |
| 530 | // getAssignees returns a list of users who can be assigned to issues in this repository. |
| 531 | func (r *Repository) getAssignees(e Engine) (_ []*User, err error) { |
| 532 | return r.getUsersWithAccesMode(e, AccessModeRead) |
| 533 | } |
| 534 | |
| 535 | // GetAssignees returns all users that have read access and can be assigned to issues |
| 536 | // of the repository, |
no test coverage detected