mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-14 21:48:50 -04:00
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Mattermost Build <build@mattermost.com>
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
package settings
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
const (
|
|
// ContextIDKey defines the key used in the context to store the ID
|
|
ContextIDKey = "setting_id"
|
|
// ContextButtonValueKey defines the key used in the context to store a button value
|
|
ContextButtonValueKey = "button_value"
|
|
// ContextOptionValueKey defines the key used in the context to store a selected option value
|
|
ContextOptionValueKey = "selected_option"
|
|
|
|
// DisabledString defines the string used to show that a setting is disabled
|
|
DisabledString = "Disabled"
|
|
// TrueString codify the boolean true into a string
|
|
TrueString = "true"
|
|
// FalseString codify the boolean false into a string
|
|
FalseString = "false"
|
|
)
|
|
|
|
// Setting defines the behavior of each element a the panel
|
|
type Setting interface {
|
|
Set(userID string, value any) error
|
|
Get(userID string) (any, error)
|
|
GetID() string
|
|
GetDependency() string
|
|
IsDisabled(foreignValue any) bool
|
|
GetTitle() string
|
|
GetDescription() string
|
|
GetMessageAttachments(userID, settingHandler string, disabled bool) (*model.MessageAttachment, error)
|
|
}
|