You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
675 B

  1. // Copyright 2015 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package admin
  5. import (
  6. api "code.gitea.io/sdk/gitea"
  7. "code.gitea.io/gitea/modules/context"
  8. "code.gitea.io/gitea/routers/api/v1/repo"
  9. "code.gitea.io/gitea/routers/api/v1/user"
  10. )
  11. // CreateRepo api for creating a repository
  12. // see https://github.com/gogits/go-gogs-client/wiki/Administration-Repositories#create-a-new-repository
  13. func CreateRepo(ctx *context.APIContext, form api.CreateRepoOption) {
  14. owner := user.GetUserByParams(ctx)
  15. if ctx.Written() {
  16. return
  17. }
  18. repo.CreateUserRepo(ctx, owner, form)
  19. }