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.

settings.go 563B

123456789101112131415161718192021
  1. // Copyright 2020 The Gitea 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 swagger
  5. import api "code.gitea.io/gitea/modules/structs"
  6. // GeneralRepoSettings
  7. // swagger:response GeneralRepoSettings
  8. type swaggerResponseGeneralRepoSettings struct {
  9. // in:body
  10. Body api.GeneralRepoSettings `json:"body"`
  11. }
  12. // GeneralUISettings
  13. // swagger:response GeneralUISettings
  14. type swaggerResponseGeneralUISettings struct {
  15. // in:body
  16. Body api.GeneralUISettings `json:"body"`
  17. }