You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
321 B
11 lines
321 B
import {syncFilesWithCloud} from "../helpers.js";
|
|
|
|
export default async function (req, res, next) {
|
|
try {
|
|
await syncFilesWithCloud(req.body.block, null, true);
|
|
} catch (err) {
|
|
return res.status(500).json({status: 500, message: err.message});
|
|
}
|
|
|
|
res.json({status: 200, message: 'Successfully synced!'});
|
|
}
|
|
|