mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 04:12:09 +08:00
Settings: Encapsulate settings within an extensible provider (#32219)
* Encapsulate settings with a provider with support for runtime reloads * SettingsProvider: reload is controlled by the services * naive impl of reload handlers for settings * working naive detection on new changes * Trigger settings reload from API endpoint * validation step added * validation of settings * Fix linting errors * Replace DB_Varchar by DB_NVarchar * Reduce settings columns (section, key) lenghts * wip db update logic * Db Settings: separate updates and removals * Fix: removes incorrectly added code * Minor code improvements * Runtime settings: moved oss -> ee * Remove no longer used setting.Cfg SAML-related fields * Rename file setting/settings.go => setting/provider.go * Apply suggestions from code review Co-authored-by: Agnès Toulet <35176601+AgnesToulet@users.noreply.github.com> * Minor code improvements on OSS settings provider * Fix some login API tests * Correct some GoDoc comments * Apply suggestions from code review Co-authored-by: Agnès Toulet <35176601+AgnesToulet@users.noreply.github.com> Co-authored-by: Leonard Gram <leo@xlson.com> Co-authored-by: Agnès Toulet <35176601+AgnesToulet@users.noreply.github.com>
This commit is contained in:

committed by
GitHub

parent
df4181c43a
commit
c41b08bd59
@ -12,6 +12,7 @@ import (
|
||||
"github.com/grafana/grafana/pkg/services/accesscontrol/ossaccesscontrol"
|
||||
"github.com/grafana/grafana/pkg/services/licensing"
|
||||
"github.com/grafana/grafana/pkg/services/validations"
|
||||
"github.com/grafana/grafana/pkg/setting"
|
||||
_ "github.com/grafana/loki/pkg/logproto"
|
||||
_ "github.com/grafana/loki/pkg/promtail/client"
|
||||
_ "github.com/grpc-ecosystem/go-grpc-middleware"
|
||||
@ -31,6 +32,7 @@ func init() {
|
||||
registry.RegisterService(&licensing.OSSLicensingService{})
|
||||
registry.RegisterService(&validations.OSSPluginRequestValidator{})
|
||||
registry.RegisterService(&ossaccesscontrol.OSSAccessControlService{})
|
||||
registry.RegisterService(&setting.OSSImpl{})
|
||||
}
|
||||
|
||||
var IsEnterprise bool = false
|
||||
|
Reference in New Issue
Block a user