mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
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
|
|
GetSlackAttachments(userID, settingHandler string, disabled bool) (*model.SlackAttachment, error)
|
|
}
|