- 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>
26 lines
748 B
TypeScript
26 lines
748 B
TypeScript
import { fail, redirect } from '@sveltejs/kit';
|
|
import type { Actions } from './$types';
|
|
import { createApiClient } from '$lib/shared/api.server';
|
|
import { getErrorMessage } from '$lib/shared/errors';
|
|
|
|
export const actions: Actions = {
|
|
default: async ({ request, fetch }) => {
|
|
const data = await request.formData();
|
|
const api = createApiClient(fetch);
|
|
|
|
const result = await api.POST('/api/groups', {
|
|
body: {
|
|
name: data.get('name') as string,
|
|
permissions: data.getAll('permissions') as string[]
|
|
}
|
|
});
|
|
|
|
if (!result.response.ok) {
|
|
const code = (result.error as unknown as { code?: string })?.code;
|
|
return fail(result.response.status, { error: getErrorMessage(code) });
|
|
}
|
|
|
|
throw redirect(303, '/admin/groups');
|
|
}
|
|
};
|