Skip to content
Snippets Groups Projects
Unverified Commit f7c596be authored by syuilo's avatar syuilo Committed by GitHub
Browse files

Delete update-remote-user.js

parent ac8817ef
No related branches found
No related tags found
No related merge requests found
const updatePerson = require('../built/remote/activitypub/models/person').updatePerson;
const args = process.argv.slice(2);
const user = args[0];
console.log(`Updating ${user}...`);
updatePerson(user).then(() => {
console.log(`Updated ${user}`);
}, e => {
console.error(e);
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment