Standardiser l'utilisation de api#NewApiClientFromViper #110

Merged
vlbeaudoin merged 2 commits from fix/use-api-client-from-viper into main 2023-08-19 15:24:19 -04:00
Showing only changes of commit 25aaad42b6 - Show all commits

View file

@ -441,13 +441,7 @@ func handleAdminDocumentsUploadPOST(c echo.Context) error {
Message string Message string
} }
client, err := api.New(cfg.Server.Api.Protocol, cfg.Server.Api.Host, cfg.Server.Port, api.APIOptions{ client, err := api.NewApiClientFromViper()
KeyAuth: cfg.Server.Api.Auth,
Key: cfg.Server.Api.Key,
BasicAuth: cfg.Server.Admin.Auth,
Username: cfg.Server.Admin.Username,
Password: cfg.Server.Admin.Password,
})
if err != nil { if err != nil {
data.Message = fmt.Sprintf("handleAdminDocumentsUploadPOST#api.New: %s", err) data.Message = fmt.Sprintf("handleAdminDocumentsUploadPOST#api.New: %s", err)
return c.Render(http.StatusInternalServerError, "admin-upload-html", data) return c.Render(http.StatusInternalServerError, "admin-upload-html", data)