2015-12-18 09:27:41 +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 admin
|
|
|
|
|
|
|
|
import (
|
|
|
|
api "github.com/gogits/go-gogs-client"
|
|
|
|
|
2016-11-03 17:59:56 +05:30
|
|
|
"github.com/go-gitea/gitea/modules/context"
|
|
|
|
"github.com/go-gitea/gitea/routers/api/v1/repo"
|
|
|
|
"github.com/go-gitea/gitea/routers/api/v1/user"
|
2015-12-18 09:27:41 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Administration-Repositories#create-a-new-repository
|
2016-03-14 04:19:16 +05:30
|
|
|
func CreateRepo(ctx *context.APIContext, form api.CreateRepoOption) {
|
2015-12-18 09:27:41 +05:30
|
|
|
owner := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
repo.CreateUserRepo(ctx, owner, form)
|
|
|
|
}
|