2023-02-19 09:12:01 -07:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package setting
|
|
|
|
|
2024-02-23 00:24:04 -07:00
|
|
|
import "code.gitea.io/gitea/modules/container"
|
|
|
|
|
2023-02-19 09:12:01 -07:00
|
|
|
// Admin settings
|
|
|
|
var Admin struct {
|
|
|
|
DisableRegularOrgCreation bool
|
|
|
|
DefaultEmailNotification string
|
2024-02-23 00:24:04 -07:00
|
|
|
UserDisabledFeatures container.Set[string]
|
2023-02-19 09:12:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func loadAdminFrom(rootCfg ConfigProvider) {
|
|
|
|
sec := rootCfg.Section("admin")
|
2024-02-23 00:24:04 -07:00
|
|
|
Admin.DisableRegularOrgCreation = sec.Key("DISABLE_REGULAR_ORG_CREATION").MustBool(false)
|
2023-02-19 09:12:01 -07:00
|
|
|
Admin.DefaultEmailNotification = sec.Key("DEFAULT_EMAIL_NOTIFICATIONS").MustString("enabled")
|
2024-02-23 00:24:04 -07:00
|
|
|
Admin.UserDisabledFeatures = container.SetOf(sec.Key("USER_DISABLED_FEATURES").Strings(",")...)
|
2023-02-19 09:12:01 -07:00
|
|
|
}
|
2024-02-23 00:24:04 -07:00
|
|
|
|
|
|
|
const (
|
2024-03-01 18:21:01 -07:00
|
|
|
UserFeatureDeletion = "deletion"
|
|
|
|
UserFeatureManageGPGKeys = "manage_gpg_keys"
|
2024-02-23 00:24:04 -07:00
|
|
|
)
|