- Move api.server.ts, errors.ts, types.ts, utils.ts, relativeTime.ts to lib/shared/ - Move person relationship components to lib/person/relationship/ - Move Stammbaum components to lib/person/genealogy/ - Move HelpPopover to lib/shared/primitives/ - Update all import paths across routes, specs, and lib files - Update vi.mock() paths in server-project test files - Remove now-empty legacy directories (components/, hooks/, server/, etc.) - Update vite.config.ts coverage include paths for new structure - Update frontend/CLAUDE.md to reflect domain-based lib/ layout Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
604 B
TypeScript
21 lines
604 B
TypeScript
import { fail } from '@sveltejs/kit';
|
|
import type { Actions } from './$types';
|
|
import { createApiClient } from '$lib/shared/api.server';
|
|
|
|
export const actions = {
|
|
default: async ({ request, fetch }) => {
|
|
const formData = await request.formData();
|
|
const email = formData.get('email') as string;
|
|
|
|
if (!email) {
|
|
return fail(400, { error: 'Email is required' });
|
|
}
|
|
|
|
const api = createApiClient(fetch);
|
|
await api.POST('/api/auth/forgot-password', { body: { email } });
|
|
|
|
// Always return success — never disclose whether the email exists
|
|
return { success: true };
|
|
}
|
|
} satisfies Actions;
|