go-sdk/gitea/repo_collaborator.go

27 lines
766 B
Go
Raw Normal View History

2016-08-11 21:37:42 +05:30
// Copyright 2016 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package gitea
2016-08-11 21:37:42 +05:30
import (
"bytes"
2016-08-12 00:04:16 +05:30
"encoding/json"
2016-08-11 21:37:42 +05:30
"fmt"
)
2016-11-10 15:14:00 +05:30
// AddCollaboratorOption options when add some user as a collaborator of a repository
2016-08-11 21:37:42 +05:30
type AddCollaboratorOption struct {
Permission *string `json:"permission"`
}
2016-11-10 15:14:00 +05:30
// AddCollaborator add some user as a collaborator of a repository
2016-08-11 21:37:42 +05:30
func (c *Client) AddCollaborator(user, repo, collaborator string, opt AddCollaboratorOption) error {
body, err := json.Marshal(&opt)
if err != nil {
return err
}
_, err = c.getResponse("PUT", fmt.Sprintf("/repos/%s/%s/collaborators/%s", user, repo, collaborator), nil, bytes.NewReader(body))
return err
}