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" SettingsSaveHostname = SettingsInterface + ".SaveHostname"
/* Properties */ /* Properties */
SettingsPropertyConnections = SettingsInterface + "Connections" // readable ao SettingsPropertyConnections = SettingsInterface + ".Connections" // readable ao
SettingsPropertyHostname = SettingsInterface + "Hostname" // readable s SettingsPropertyHostname = SettingsInterface + ".Hostname" // readable s
SettingsPropertyCanModify = SettingsInterface + "CanModify" // readable b SettingsPropertyCanModify = SettingsInterface + ".CanModify" // readable b
) )
type Settings interface { type Settings interface {