- Implemented PATCH and DELETE endpoints for bug reports. - Created user management page with user creation, display name update, password reset, and user deletion functionalities. - Added password validation and hashing for user creation and password reset. - Integrated dialogs for user actions (create, update, reset password, delete). - Configured SvelteKit with Node adapter and Vite for build process. - Set up Tailwind CSS for styling.
37 lines
900 B
JavaScript
37 lines
900 B
JavaScript
export { matchers } from './matchers.js';
|
|
|
|
export const nodes = [
|
|
() => import('./nodes/0'),
|
|
() => import('./nodes/1'),
|
|
() => import('./nodes/2'),
|
|
() => import('./nodes/3'),
|
|
() => import('./nodes/4'),
|
|
() => import('./nodes/5'),
|
|
() => import('./nodes/6')
|
|
];
|
|
|
|
export const server_loads = [0];
|
|
|
|
export const dictionary = {
|
|
"/": [~2],
|
|
"/login": [~3],
|
|
"/logout": [~4],
|
|
"/reports/[id]": [~5],
|
|
"/users": [~6]
|
|
};
|
|
|
|
export const hooks = {
|
|
handleError: (({ error }) => { console.error(error) }),
|
|
|
|
reroute: (() => {}),
|
|
transport: {}
|
|
};
|
|
|
|
export const decoders = Object.fromEntries(Object.entries(hooks.transport).map(([k, v]) => [k, v.decode]));
|
|
export const encoders = Object.fromEntries(Object.entries(hooks.transport).map(([k, v]) => [k, v.encode]));
|
|
|
|
export const hash = false;
|
|
|
|
export const decode = (type, value) => decoders[type](value);
|
|
|
|
export { default as root } from '../root.js'; |