GetCollaborators returns the collaborators for a repository
()
| 120 | |
| 121 | // GetCollaborators returns the collaborators for a repository |
| 122 | func (r *Repository) GetCollaborators() ([]*Collaborator, error) { |
| 123 | return r.getCollaborators(x) |
| 124 | } |
| 125 | |
| 126 | // ChangeCollaborationAccessMode sets new access mode for the collaboration. |
| 127 | // The actor's access mode bounds the new mode, so an actor can never grant a |
no test coverage detected