Files
klz-cables.com/.pnpm-store/v10/files/99/55b9ad47464f740cbc0859d10020e84878b7c0797598f1715c8dc595fcbbce02d6dca8eafa55fddec3fbf17b5686d8f5c2b7b3a85c68377e6eacf9525145c5
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

17 lines
515 B
Plaintext

import { killTransaction } from '../../utilities/killTransaction.js';
import { adminInit as adminInitTelemetry } from '../../utilities/telemetry/events/adminInit.js';
import { getAccessResults } from '../getAccessResults.js';
export const accessOperation = async (args)=>{
const { req } = args;
adminInitTelemetry(req);
try {
return getAccessResults({
req
});
} catch (e) {
await killTransaction(req);
throw e;
}
};
//# sourceMappingURL=access.js.map