// First, load the comment...
jDrupal.commentLoad(456).then(function(comment) {
// then change its subject...
comment.setSubject('Goodbye world');
// and then save the changes.
comment.save().then(function() {
var msg = 'Saved ' + comment.setSubject();
console.log(msg);
});
});
Delete a Comment
// First, load the comment...
jDrupal.commentLoad(456).then(function(comment) {
// then delete it.
comment.delete(456).then(function() {
console.log('comment deleted!');
});
});