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 (
|
2016-11-11 15:09:44 +05:30
|
|
|
api "code.gitea.io/sdk/gitea"
|
2015-12-18 09:27:41 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/repo"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2015-12-18 09:27:41 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreateRepo api for creating a repository
|
2016-03-14 04:19:16 +05:30
|
|
|
func CreateRepo(ctx *context.APIContext, form api.CreateRepoOption) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route POST /admin/users/{username}/repos admin adminCreateRepo
|
|
|
|
//
|
|
|
|
// Consumes:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 201: Repository
|
|
|
|
// 403: forbidden
|
|
|
|
// 422: validationError
|
|
|
|
// 500: error
|
|
|
|
|
2015-12-18 09:27:41 +05:30
|
|
|
owner := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
repo.CreateUserRepo(ctx, owner, form)
|
|
|
|
}
|