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
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
import { status as httpStatus } from 'http-status';
|
|
import { getRequestGlobal } from '../../utilities/getRequestEntity.js';
|
|
import { headersWithCors } from '../../utilities/headersWithCors.js';
|
|
import { isNumber } from '../../utilities/isNumber.js';
|
|
import { sanitizePopulateParam } from '../../utilities/sanitizePopulateParam.js';
|
|
import { sanitizeSelectParam } from '../../utilities/sanitizeSelectParam.js';
|
|
import { findVersionByIDOperation } from '../operations/findVersionByID.js';
|
|
export const findVersionByIDHandler = async (req)=>{
|
|
const globalConfig = getRequestGlobal(req);
|
|
const { searchParams } = req;
|
|
const depth = searchParams.get('depth');
|
|
const result = await findVersionByIDOperation({
|
|
id: req.routeParams.id,
|
|
depth: isNumber(depth) ? Number(depth) : undefined,
|
|
globalConfig,
|
|
populate: sanitizePopulateParam(req.query.populate),
|
|
req,
|
|
select: sanitizeSelectParam(req.query.select)
|
|
});
|
|
return Response.json(result, {
|
|
headers: headersWithCors({
|
|
headers: new Headers(),
|
|
req
|
|
}),
|
|
status: httpStatus.OK
|
|
});
|
|
};
|
|
|
|
//# sourceMappingURL=findVersionByID.js.map |