diff --git a/domains/server/v1/configapi.go b/domains/server/v1/configapi.go index 5bb9dce..6fdd231 100644 --- a/domains/server/v1/configapi.go +++ b/domains/server/v1/configapi.go @@ -14,7 +14,7 @@ import ( // This function responsible for getting runtime configuration. func configurationGET(ec echo.Context) error { - return ec.JSON(http.StatusOK, map[string]string{"result": "success"}) + return ec.JSON(http.StatusOK, configuration.Cfg.GetAllPackagesInfo()) } func configurationAllowedIPsSET(ec echo.Context) error {