All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lib.xp.examples.portal.getSiteConfig.js Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
var portalLib = require('/lib/xp/portal');
var assert = require('/lib/xp/testing');

// BEGIN
var result = portalLib.getSiteConfig();
log.info('Field value for the current site config = %s', result.Field);
// END

// BEGIN
// Site config returned.
var expected = {
    'Field': 42
};
// END

assert.assertJsonEquals(expected, result);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy