go-sdk/admin_repo.go

22 lines
539 B
Go
Raw Normal View History

2015-12-18 09:21:53 +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 gogs
import (
"bytes"
"encoding/json"
"fmt"
)
func (c *Client) AdminCreateRepo(user string, opt CreateRepoOption) (*Repository, error) {
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 06:16:54 +05:30
jsonHeader, bytes.NewReader(body), repo)
2015-12-18 09:21:53 +05:30
}