mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
17 lines
355 B
Go
17 lines
355 B
Go
package setting
|
|
|
|
import (
|
|
"gopkg.in/ini.v1"
|
|
)
|
|
|
|
type StorageSettings struct {
|
|
AllowUnsanitizedSvgUpload bool
|
|
}
|
|
|
|
func readStorageSettings(iniFile *ini.File) StorageSettings {
|
|
s := StorageSettings{}
|
|
storageSection := iniFile.Section("storage")
|
|
s.AllowUnsanitizedSvgUpload = storageSection.Key("allow_unsanitized_svg_upload").MustBool(false)
|
|
return s
|
|
}
|