|
|
@@ -0,0 +1,24 @@
|
|
|
+const minimist = require('minimist')
|
|
|
+const ProjectDeleter = require('../app/src/Features/Project/ProjectDeleter')
|
|
|
+
|
|
|
+async function main() {
|
|
|
+ const argv = minimist(process.argv.slice(2))
|
|
|
+ const projectId = argv['project-id']
|
|
|
+ const userId = argv['user-id']
|
|
|
+
|
|
|
+ if (!projectId || !userId) {
|
|
|
+ throw new Error('set --project-id and --user-id')
|
|
|
+ }
|
|
|
+ console.log(`Restoring project ${projectId} to user ${userId}`)
|
|
|
+ await ProjectDeleter.promises.undeleteProject(projectId, { userId })
|
|
|
+}
|
|
|
+
|
|
|
+main()
|
|
|
+ .then(() => {
|
|
|
+ console.log('Done.')
|
|
|
+ process.exit(0)
|
|
|
+ })
|
|
|
+ .catch(err => {
|
|
|
+ console.error(err)
|
|
|
+ process.exit(1)
|
|
|
+ })
|