update gerrit implementation

This commit is contained in:
Brad Rydzewski 2017-07-16 14:29:10 -04:00
parent a0661e3ccd
commit 0b1a60fabc

View file

@ -69,18 +69,13 @@ func (c *client) Teams(u *model.User) ([]*model.Team, error) {
return empty, nil
}
// TeamPerm is not supported by the Gerrit driver.
func (c *client) TeamPerm(u *model.User, org string) (*model.Perm, error) {
return nil, nil
}
// Repo is not supported by the Gerrit driver.
func (c *client) Repo(u *model.User, owner, name string) (*model.Repo, error) {
return nil, nil
}
// Repos is not supported by the Gerrit driver.
func (c *client) Repos(u *model.User) ([]*model.RepoLite, error) {
func (c *client) Repos(u *model.User) ([]*model.Repo, error) {
return nil, nil
}