- Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathadmin_org.go
43 lines (37 loc) · 1.21 KB
/
admin_org.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright 2015 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 gogs
import (
"bytes"
"encoding/json"
"fmt"
)
func (c*Client) AdminCreateOrg(userstring, optCreateOrgOption) (*Organization, error) {
body, err:=json.Marshal(&opt)
iferr!=nil {
returnnil, err
}
org:=new(Organization)
returnorg, c.getParsedResponse("POST", fmt.Sprintf("/admin/users/%s/orgs", user),
jsonHeader, bytes.NewReader(body), org)
}
func (c*Client) AdminCreateTeam(userstring, optCreateTeamOption) (*Team, error) {
body, err:=json.Marshal(&opt)
iferr!=nil {
returnnil, err
}
team:=new(Team)
returnteam, c.getParsedResponse("POST", fmt.Sprintf("/admin/orgs/%s/teams", user),
jsonHeader, bytes.NewReader(body), team)
}
func (c*Client) AdminAddTeamMembership(teamIDint64, userstring) error {
_, err:=c.getResponse("PUT", fmt.Sprintf("/admin/teams/%d/members/%s", teamID, user),
jsonHeader, nil)
returnerr
}
func (c*Client) AdminAddTeamRepository(teamIDint64, repostring) error {
_, err:=c.getResponse("PUT", fmt.Sprintf("/admin/teams/%d/repos/%s", teamID, repo),
jsonHeader, nil)
returnerr
}