mirror of
https://github.com/gogs/gogs.git
synced 2026-03-01 09:40:55 +01:00
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
19 lines
357 B
Go
19 lines
357 B
Go
package admin
|
|
|
|
import (
|
|
api "github.com/gogs/go-gogs-client"
|
|
|
|
"gogs.io/gogs/internal/context"
|
|
"gogs.io/gogs/internal/route/api/v1/repo"
|
|
"gogs.io/gogs/internal/route/api/v1/user"
|
|
)
|
|
|
|
func CreateRepo(c *context.APIContext, form api.CreateRepoOption) {
|
|
owner := user.GetUserByParams(c)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
|
|
repo.CreateUserRepo(c, owner, form)
|
|
}
|