2022-01-21 17:59:26 +00: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 06:15:04 +00:00
|
|
|
// SettingsKeyHiddenCommentTypes is the setting key for hidden comment types
|
2022-01-21 17:59:26 +00:00
|
|
|
SettingsKeyHiddenCommentTypes = "issue.hidden_comment_types"
|
2022-02-08 06:15:04 +00:00
|
|
|
// SettingsKeyDiffWhitespaceBehavior is the setting key for whitespace behavior of diff
|
|
|
|
SettingsKeyDiffWhitespaceBehavior = "diff.whitespace_behaviour"
|
2022-01-21 17:59:26 +00:00
|
|
|
)
|