mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
653 B
Go
35 lines
653 B
Go
3 years ago
|
package api
|
||
|
|
||
|
type UserSettingKey string
|
||
|
|
||
|
const (
|
||
|
// UserSettingLocaleKey is the key type for user locale
|
||
|
UserSettingLocaleKey UserSettingKey = "locale"
|
||
|
)
|
||
|
|
||
|
// String returns the string format of UserSettingKey type.
|
||
|
func (key UserSettingKey) String() string {
|
||
|
switch key {
|
||
|
case UserSettingLocaleKey:
|
||
|
return "locale"
|
||
|
}
|
||
|
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
|
||
|
}
|