go-sdk/gitea/admin_org.go

23 lines
579 B
Go
Raw Permalink Normal View History

2015-12-17 07:15:29 +00:00
// 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 07:15:29 +00:00
import (
"bytes"
"encoding/json"
"fmt"
)
2016-11-10 09:44:00 +00:00
// AdminCreateOrg create an organization
2015-12-18 03:51:53 +00:00
func (c *Client) AdminCreateOrg(user string, opt CreateOrgOption) (*Organization, error) {
2015-12-17 07:15:29 +00:00
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 00:46:54 +00:00
jsonHeader, bytes.NewReader(body), org)
2015-12-17 07:15:29 +00:00
}