You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setting_keys.go 767B

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