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