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

lib.xp.examples.node.push-2.js Maven / Gradle / Ivy

The newest version!
var nodeLib = require('/lib/xp/node');
var t = require('/lib/xp/testing');

var repo = nodeLib.connect({
    repoId: 'com.enonic.cms.default',
    branch: 'master'
});

// BEGIN
// Rename content by id. Keeps same parent.
var result = repo.push({
    keys: ['a'],
    target: 'otherBranch',
    resolve: true,
    includeChildren: true
});
// END

// BEGIN
// Node created.
var expected = {
    'success': [
        'a',
        'b',
        'c'
    ],
    'failed': [
        {
            'id': 'd',
            'reason': 'ACCESS_DENIED'
        }
    ],
    'deleted': []
};
// END

t.assertJsonEquals(expected, result);






© 2015 - 2024 Weber Informatics LLC | Privacy Policy