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
24 lines
749 B
Plaintext
24 lines
749 B
Plaintext
import { status as httpStatus } from 'http-status';
|
|
import { getRequestCollectionWithID } from '../../utilities/getRequestEntity.js';
|
|
import { headersWithCors } from '../../utilities/headersWithCors.js';
|
|
import { docAccessOperation } from '../operations/docAccess.js';
|
|
export const docAccessHandler = async (req)=>{
|
|
const { id, collection } = getRequestCollectionWithID(req, {
|
|
optionalID: true
|
|
});
|
|
const result = await docAccessOperation({
|
|
id,
|
|
collection,
|
|
data: req.data,
|
|
req
|
|
});
|
|
return Response.json(result, {
|
|
headers: headersWithCors({
|
|
headers: new Headers(),
|
|
req
|
|
}),
|
|
status: httpStatus.OK
|
|
});
|
|
};
|
|
|
|
//# sourceMappingURL=docAccess.js.map |