2020-06-10 17:35:46 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-10 17:35:46 +05:30
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
// GeneralRepoSettings contains global repository settings exposed by API
|
|
|
|
type GeneralRepoSettings struct {
|
2021-02-20 15:47:51 +05:30
|
|
|
MirrorsDisabled bool `json:"mirrors_disabled"`
|
|
|
|
HTTPGitDisabled bool `json:"http_git_disabled"`
|
|
|
|
MigrationsDisabled bool `json:"migrations_disabled"`
|
2021-04-15 22:23:57 +05:30
|
|
|
StarsDisabled bool `json:"stars_disabled"`
|
2021-02-20 15:47:51 +05:30
|
|
|
TimeTrackingDisabled bool `json:"time_tracking_disabled"`
|
|
|
|
LFSDisabled bool `json:"lfs_disabled"`
|
2020-06-10 17:35:46 +05:30
|
|
|
}
|
2020-06-22 23:51:31 +05:30
|
|
|
|
|
|
|
// GeneralUISettings contains global ui settings exposed by API
|
|
|
|
type GeneralUISettings struct {
|
2020-12-03 18:23:21 +05:30
|
|
|
DefaultTheme string `json:"default_theme"`
|
2020-06-22 23:51:31 +05:30
|
|
|
AllowedReactions []string `json:"allowed_reactions"`
|
2021-06-29 19:58:38 +05:30
|
|
|
CustomEmojis []string `json:"custom_emojis"`
|
2020-06-22 23:51:31 +05:30
|
|
|
}
|
2020-09-04 23:40:15 +05:30
|
|
|
|
|
|
|
// GeneralAPISettings contains global api settings exposed by it
|
|
|
|
type GeneralAPISettings struct {
|
|
|
|
MaxResponseItems int `json:"max_response_items"`
|
|
|
|
DefaultPagingNum int `json:"default_paging_num"`
|
|
|
|
DefaultGitTreesPerPage int `json:"default_git_trees_per_page"`
|
|
|
|
DefaultMaxBlobSize int64 `json:"default_max_blob_size"`
|
|
|
|
}
|
2020-09-05 13:13:06 +05:30
|
|
|
|
|
|
|
// GeneralAttachmentSettings contains global Attachment settings exposed by API
|
|
|
|
type GeneralAttachmentSettings struct {
|
|
|
|
Enabled bool `json:"enabled"`
|
|
|
|
AllowedTypes string `json:"allowed_types"`
|
|
|
|
MaxSize int64 `json:"max_size"`
|
|
|
|
MaxFiles int `json:"max_files"`
|
|
|
|
}
|