Files
klz-cables.com/.pnpm-store/v10/files/68/ebd9037e27dc60fcf5576336b95a4dc7316077197d0d860b383f82aff04a76ae35eb90ea18d79eee7ba58a70d0bad8e357cc79a7d6c4e5bbe3c4dc1de45753
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

73 lines
1.8 KiB
Plaintext

import { wrapInternalEndpoints } from '../../utilities/wrapInternalEndpoints.js';
import { accessHandler } from './access.js';
import { forgotPasswordHandler } from './forgotPassword.js';
import { initHandler } from './init.js';
import { loginHandler } from './login.js';
import { logoutHandler } from './logout.js';
import { meHandler } from './me.js';
import { refreshHandler } from './refresh.js';
import { registerFirstUserHandler } from './registerFirstUser.js';
import { resetPasswordHandler } from './resetPassword.js';
import { unlockHandler } from './unlock.js';
import { verifyEmailHandler } from './verifyEmail.js';
export const authRootEndpoints = wrapInternalEndpoints([
{
handler: accessHandler,
method: 'get',
path: '/access'
}
]);
export const authCollectionEndpoints = wrapInternalEndpoints([
{
handler: forgotPasswordHandler,
method: 'post',
path: '/forgot-password'
},
{
handler: initHandler,
method: 'get',
path: '/init'
},
{
handler: loginHandler,
method: 'post',
path: '/login'
},
{
handler: logoutHandler,
method: 'post',
path: '/logout'
},
{
handler: meHandler,
method: 'get',
path: '/me'
},
{
handler: refreshHandler,
method: 'post',
path: '/refresh-token'
},
{
handler: registerFirstUserHandler,
method: 'post',
path: '/first-register'
},
{
handler: resetPasswordHandler,
method: 'post',
path: '/reset-password'
},
{
handler: unlockHandler,
method: 'post',
path: '/unlock'
},
{
handler: verifyEmailHandler,
method: 'post',
path: '/verify/:id'
}
]);
//# sourceMappingURL=index.js.map