Accessing config node's credentials in Editor

Hi,

I got a config node that has a few normal fields an some credentials:

        category: 'config',
        defaults: {
            name: {value: ''},
            host: {required: true},
            scheme: {value: 'http', required: true}
        },
        credentials: {
            username: {type: "text"},
            password: {type: "password"}
        }

Now in another node, that references the config node in a dropdown I want to do a request to the configured URL for the config node whenever another value is selected. I can access "scheme" and "host", but I cannot access username and password. I suppose it is not the ideal way to make them normal properties. Any way how I can handle this?

Thanks

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.