2022-01-21 18:59:26 +01:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
|
|
const (
|
2022-02-08 17:15:04 +11:00
|
|
|
// SettingsKeyHiddenCommentTypes is the setting key for hidden comment types
|
2022-01-21 18:59:26 +01:00
|
|
|
SettingsKeyHiddenCommentTypes = "issue.hidden_comment_types"
|
2022-02-08 17:15:04 +11:00
|
|
|
// SettingsKeyDiffWhitespaceBehavior is the setting key for whitespace behavior of diff
|
|
|
|
|
SettingsKeyDiffWhitespaceBehavior = "diff.whitespace_behaviour"
|
2022-06-19 00:25:12 -05:00
|
|
|
// UserActivityPubPrivPem is user's private key
|
|
|
|
|
UserActivityPubPrivPem = "activitypub.priv_pem"
|
|
|
|
|
// UserActivityPubPubPem is user's public key
|
|
|
|
|
UserActivityPubPubPem = "activitypub.pub_pem"
|
2022-01-21 18:59:26 +01:00
|
|
|
)
|