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