mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 09:02:49 +03:00
41 lines
909 B
Go
41 lines
909 B
Go
package api
|
|
|
|
type UserSettingKey string
|
|
|
|
const (
|
|
// UserSettingLocaleKey is the key type for user locale.
|
|
UserSettingLocaleKey UserSettingKey = "locale"
|
|
// UserSettingMemoVisibilityKey is the key type for user perference memo default visibility.
|
|
UserSettingMemoVisibilityKey UserSettingKey = "memoVisibility"
|
|
)
|
|
|
|
// String returns the string format of UserSettingKey type.
|
|
func (key UserSettingKey) String() string {
|
|
switch key {
|
|
case UserSettingLocaleKey:
|
|
return "locale"
|
|
case UserSettingMemoVisibilityKey:
|
|
return "memoVisibility"
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UserSetting struct {
|
|
UserID int
|
|
Key UserSettingKey `json:"key"`
|
|
// Value is a JSON string with basic value
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type UserSettingUpsert struct {
|
|
UserID int
|
|
Key UserSettingKey `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type UserSettingFind struct {
|
|
UserID int
|
|
|
|
Key *UserSettingKey `json:"key"`
|
|
}
|