Fix Settings properties path

This commit is contained in:
Christian Müller 2019-05-27 16:22:02 +02:00
parent 2cd4d064d3
commit a165df46fa

View file

@ -18,9 +18,9 @@ const (
SettingsSaveHostname = SettingsInterface + ".SaveHostname"
/* Properties */
SettingsPropertyConnections = SettingsInterface + "Connections" // readable ao
SettingsPropertyHostname = SettingsInterface + "Hostname" // readable s
SettingsPropertyCanModify = SettingsInterface + "CanModify" // readable b
SettingsPropertyConnections = SettingsInterface + ".Connections" // readable ao
SettingsPropertyHostname = SettingsInterface + ".Hostname" // readable s
SettingsPropertyCanModify = SettingsInterface + ".CanModify" // readable b
)
type Settings interface {