code.gitea.io/gitea@v1.22.3/models/user/setting_keys.go (about) 1 // Copyright 2021 The Gitea Authors. All rights reserved. 2 // SPDX-License-Identifier: MIT 3 4 package user 5 6 const ( 7 // SettingsKeyHiddenCommentTypes is the setting key for hidden comment types 8 SettingsKeyHiddenCommentTypes = "issue.hidden_comment_types" 9 // SettingsKeyDiffWhitespaceBehavior is the setting key for whitespace behavior of diff 10 SettingsKeyDiffWhitespaceBehavior = "diff.whitespace_behaviour" 11 // SettingsKeyShowOutdatedComments is the setting key wether or not to show outdated comments in PRs 12 SettingsKeyShowOutdatedComments = "comment_code.show_outdated" 13 // UserActivityPubPrivPem is user's private key 14 UserActivityPubPrivPem = "activitypub.priv_pem" 15 // UserActivityPubPubPem is user's public key 16 UserActivityPubPubPem = "activitypub.pub_pem" 17 )