Add support for import/export of profile icon

This commit is contained in:
Daniel
2023-11-22 13:40:36 +01:00
parent 58443631c4
commit bd988724c4
8 changed files with 219 additions and 70 deletions

View File

@@ -15,10 +15,10 @@ import (
// SingleSettingExport holds an export of a single setting.
type SingleSettingExport struct {
Type Type `json:"type"` // Must be TypeSingleSetting
ID string `json:"id"` // Settings Key
Type Type `json:"type" yaml:"type"` // Must be TypeSingleSetting
ID string `json:"id" yaml:"id"` // Settings Key
Value any `json:"value"`
Value any `json:"value" yaml:"value"`
}
// SingleSettingImportRequest is a request to import a single setting.