Initial version.

This commit is contained in:
2023-01-01 07:13:01 +00:00
commit 5fc98d97fe
8 changed files with 685 additions and 0 deletions

18
update-author.js Normal file
View File

@@ -0,0 +1,18 @@
const GhostAdminAPI = require('@tryghost/admin-api');
const config = require('./config.js');
const api = new GhostAdminAPI(config.api);
api.posts.browse({
limit: 'all',
filter: 'tag:photo-post+author:petru'
}).then((posts) => {
posts.forEach((post) => {
console.log(post.title, post.published_at);
api.posts.edit({
id: post.id,
updated_at: post.published_at,
authors: ["hello@alo.land"]
});
});
});