chore: tweak custom profile

This commit is contained in:
Steven 2023-12-15 22:57:53 +08:00
parent 7735cfac31
commit a10b3d3821
4 changed files with 7 additions and 10 deletions

View File

@ -158,12 +158,9 @@ func (s *APIV1Service) getSystemCustomizedProfile(ctx context.Context) (*Customi
return nil, err
}
customizedProfile := &CustomizedProfile{
Name: "memos",
LogoURL: "",
Description: "",
Name: "Memos",
Locale: "en",
Appearance: "system",
ExternalURL: "",
}
if systemSetting != nil {
if err := json.Unmarshal([]byte(systemSetting.Value), customizedProfile); err != nil {

View File

@ -80,7 +80,7 @@ func (s *APIV1Service) GetSystemStatus(c echo.Context) error {
AllowSignUp: true,
MaxUploadSizeMiB: 32,
CustomizedProfile: CustomizedProfile{
Name: "memos",
Name: "Memos",
Locale: "en",
Appearance: "system",
},

View File

@ -21,7 +21,7 @@ export const initialGlobalState = async () => {
additionalScript: "",
memoDisplayWithUpdatedTs: false,
customizedProfile: {
name: "memos",
name: "Memos",
logoUrl: "/logo.png",
description: "",
locale: "en",
@ -37,7 +37,7 @@ export const initialGlobalState = async () => {
defaultGlobalState.systemStatus = {
...data,
customizedProfile: {
name: customizedProfile.name || "memos",
name: customizedProfile.name || "Memos",
logoUrl: customizedProfile.logoUrl || "/logo.png",
description: customizedProfile.description,
locale: customizedProfile.locale || "en",

View File

@ -25,7 +25,7 @@ const globalSlice = createSlice({
additionalScript: "",
memoDisplayWithUpdatedTs: false,
customizedProfile: {
name: "memos",
name: "Memos",
logoUrl: "/logo.png",
description: "",
locale: "en",