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.

repo.go 630B

1234567891011121314151617181920212223
  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/go-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. // https://github.com/gogits/go-gogs-client/wiki/Administration-Repositories#create-a-new-repository
  12. func CreateRepo(ctx *context.APIContext, form api.CreateRepoOption) {
  13. owner := user.GetUserByParams(ctx)
  14. if ctx.Written() {
  15. return
  16. }
  17. repo.CreateUserRepo(ctx, owner, form)
  18. }