Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
29 lines
970 B
Plaintext
29 lines
970 B
Plaintext
import { status as httpStatus } from 'http-status';
|
|
import { getRequestCollectionWithID } from '../../utilities/getRequestEntity.js';
|
|
import { headersWithCors } from '../../utilities/headersWithCors.js';
|
|
import { parseParams } from '../../utilities/parseParams/index.js';
|
|
import { restoreVersionOperation } from '../operations/restoreVersion.js';
|
|
export const restoreVersionHandler = async (req)=>{
|
|
const { id, collection } = getRequestCollectionWithID(req);
|
|
const { depth, draft, populate } = parseParams(req.query);
|
|
const result = await restoreVersionOperation({
|
|
id,
|
|
collection,
|
|
depth,
|
|
draft,
|
|
populate,
|
|
req
|
|
});
|
|
return Response.json({
|
|
...result,
|
|
message: req.t('version:restoredSuccessfully')
|
|
}, {
|
|
headers: headersWithCors({
|
|
headers: new Headers(),
|
|
req
|
|
}),
|
|
status: httpStatus.OK
|
|
});
|
|
};
|
|
|
|
//# sourceMappingURL=restoreVersion.js.map |