feat: storage service backend (#1086)

* feat: storage service backend

* update go.mod

* update the column name (urlPrefix -> url_prefix)

* update

* update
This commit is contained in:
Zeng1998
2023-02-13 19:36:48 +08:00
committed by GitHub
parent cbc3373e8e
commit 1e4a81dea9
12 changed files with 387 additions and 23 deletions

View File

@ -63,7 +63,7 @@ func (s *Server) registerSystemRoutes(g *echo.Group) {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find system setting list").SetInternal(err)
}
for _, systemSetting := range systemSettingList {
if systemSetting.Name == api.SystemSettingServerID || systemSetting.Name == api.SystemSettingSecretSessionName {
if systemSetting.Name == api.SystemSettingServerID || systemSetting.Name == api.SystemSettingSecretSessionName || systemSetting.Name == api.SystemSettingStorageServiceName {
continue
}