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