debugging messages

This commit is contained in:
Tobias Buss 2023-10-09 18:33:43 +02:00
parent 2a594e0974
commit b2166a8425

View File

@ -7,7 +7,9 @@ module.exports = NodeHelper.create({
},
socketNotificationReceived: function(notification, payload) {
console.log('Notification!');
if (notification === 'GET_POSTS') {
console.log('Notification: GET_POSTS');
const { url, numberOfPosts } = payload;
const apiUrl = `${url}/wp-json/wp/v2/posts?per_page=${numberOfPosts}`;