adjustable post_type

This commit is contained in:
Tobias Buss 2023-10-09 19:21:54 +02:00
parent 85ff4c0c6c
commit f22e8199e4
2 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@ Module.register('MMM-Wordpress', {
const numberOfPosts = this.config.numberOfPosts;
//hier müssen die posts noch rein!
this.sendSocketNotification('GET_POSTS', { url, numberOfPosts });
this.sendSocketNotification('GET_POSTS', { url, posts, numberOfPosts });
},
socketNotificationReceived: function(notification, payload) {

View File

@ -10,8 +10,8 @@ module.exports = NodeHelper.create({
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}`;
const { url, posts, numberOfPosts } = payload;
const apiUrl = `${url}/wp-json/wp/v2/${posts}?per_page=${numberOfPosts}`;
request.get(apiUrl, (error, response, body) => {
if (!error && response.statusCode == 200) {