go-sdk/gitea/admin_org.go

22 lines
538 B
Go
Raw Normal View History

2015-12-17 12:45:29 +05:30
// 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 gitea
2015-12-17 12:45:29 +05:30
import (
"bytes"
"encoding/json"
"fmt"
)
2015-12-18 09:21:53 +05:30
func (c *Client) AdminCreateOrg(user string, opt CreateOrgOption) (*Organization, error) {
2015-12-17 12:45:29 +05:30
body, err := json.Marshal(&opt)
if err != nil {
return nil, err
}
org := new(Organization)
return org, c.getParsedResponse("POST", fmt.Sprintf("/admin/users/%s/orgs", user),
2016-07-17 06:16:54 +05:30
jsonHeader, bytes.NewReader(body), org)
2015-12-17 12:45:29 +05:30
}