2022-10-16 17:29:26 -06:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-10-16 17:29:26 -06:00
|
|
|
|
|
|
|
package system
|
|
|
|
|
|
|
|
// enumerate all system setting keys
|
|
|
|
const (
|
|
|
|
KeyPictureDisableGravatar = "picture.disable_gravatar"
|
|
|
|
KeyPictureEnableFederatedAvatar = "picture.enable_federated_avatar"
|
|
|
|
)
|
2022-11-09 23:43:53 -07:00
|
|
|
|
|
|
|
// genSettingCacheKey returns the cache key for some configuration
|
|
|
|
func genSettingCacheKey(key string) string {
|
|
|
|
return "system.setting." + key
|
|
|
|
}
|