chore: update logo format to png (#830)

This commit is contained in:
boojack
2022-12-23 00:21:53 +08:00
committed by GitHub
parent 7efa749c66
commit 9f25badde3
18 changed files with 22 additions and 22 deletions

View File

@ -48,7 +48,7 @@ func (s *Server) registerSystemRoutes(g *echo.Group) {
AdditionalScript: "",
CustomizedProfile: api.CustomizedProfile{
Name: "memos",
IconURL: "",
LogoURL: "",
Description: "",
Locale: "en",
Appearance: "system",
@ -77,7 +77,7 @@ func (s *Server) registerSystemRoutes(g *echo.Group) {
valueMap := value.(map[string]interface{})
systemStatus.CustomizedProfile = api.CustomizedProfile{
Name: valueMap["name"].(string),
IconURL: valueMap["iconUrl"].(string),
LogoURL: valueMap["logoUrl"].(string),
Description: valueMap["description"].(string),
Locale: valueMap["locale"].(string),
Appearance: valueMap["appearance"].(string),