forgejo-sdk/gitea/admin_repo.go

25 lines
621 B
Go
Raw Normal View History

2015-12-18 03:51:53 +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-18 03:51:53 +00:00
import (
"bytes"
"encoding/json"
"fmt"
"code.gitea.io/gitea/modules/structs"
2015-12-18 03:51:53 +00:00
)
2016-11-10 09:44:00 +00:00
// AdminCreateRepo create a repo
func (c *Client) AdminCreateRepo(user string, opt structs.CreateRepoOption) (*Repository, error) {
2015-12-18 03:51:53 +00:00
body, err := json.Marshal(&opt)
if err != nil {
return nil, err
}
repo := new(Repository)
return repo, c.getParsedResponse("POST", fmt.Sprintf("/admin/users/%s/repos", user),
2016-07-17 01:46:54 +01:00
jsonHeader, bytes.NewReader(body), repo)
2015-12-18 03:51:53 +00:00
}