
**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package admin
|
|
|
|
import (
|
|
api "forgejo.org/modules/structs"
|
|
"forgejo.org/modules/web"
|
|
"forgejo.org/routers/api/v1/repo"
|
|
"forgejo.org/services/context"
|
|
)
|
|
|
|
// CreateRepo api for creating a repository
|
|
func CreateRepo(ctx *context.APIContext) {
|
|
// swagger:operation POST /admin/users/{username}/repos admin adminCreateRepo
|
|
// ---
|
|
// summary: Create a repository on behalf of a user
|
|
// consumes:
|
|
// - application/json
|
|
// produces:
|
|
// - application/json
|
|
// parameters:
|
|
// - name: username
|
|
// in: path
|
|
// description: username of the user. This user will own the created repository
|
|
// type: string
|
|
// required: true
|
|
// - name: repository
|
|
// in: body
|
|
// required: true
|
|
// schema: { "$ref": "#/definitions/CreateRepoOption" }
|
|
// responses:
|
|
// "201":
|
|
// "$ref": "#/responses/Repository"
|
|
// "400":
|
|
// "$ref": "#/responses/error"
|
|
// "403":
|
|
// "$ref": "#/responses/forbidden"
|
|
// "404":
|
|
// "$ref": "#/responses/notFound"
|
|
// "409":
|
|
// "$ref": "#/responses/error"
|
|
// "422":
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
form := web.GetForm(ctx).(*api.CreateRepoOption)
|
|
|
|
repo.CreateUserRepo(ctx, ctx.ContextUser, *form)
|
|
}
|