Files
accounted/app/api/settings/booking-templates/export/route.ts
T
Mattsson e11f70b347 Bug/gh issues fiz (#1103)
* refactor: optimize page loading and data fetching

* fix: resolve recurring production runtime errors

* feat: add MCP company and customer updates

* fix: handle year-end tax adjustments

* feat: harden annual report compliance

* fix: expand invoice logo and font support

* fix: sanitize API route error responses

* fix: sanitize user-facing error messages

* feat: persist onboarding and tax assessment notices

* fix: reduce cloud backup audit churn

* feat: refine invoice editor layout

* fix: show saved tax adjustments in INK2

* fix: complete annual report API mappings

* docs: record operational safeguards and decisions

* fix: harden annual report review findings

* fix: adjust column span for description based on VAT registration

* New css class name
2026-07-21 23:00:15 +02:00

34 lines
1.1 KiB
TypeScript

import { NextResponse } from 'next/server'
import { withRouteContext } from '@/lib/api/with-route-context'
import { getErrorMessage as getUserErrorMessage } from '@/lib/errors/get-error-message'
/**
* GET /api/settings/booking-templates/export
* Export company + team templates as JSON (excludes system templates).
* Useful for sharing templates between unrelated companies.
*/
export const GET = withRouteContext(
'booking_template.export',
async (_request, ctx) => {
const { supabase, companyId } = ctx
const { data, error } = await supabase
.from('booking_template_library')
.select('name, description, category, entity_type, lines')
.eq('company_id', companyId)
.eq('is_active', true)
.eq('is_system', false)
.order('category')
.order('name')
if (error) return NextResponse.json({ error: getUserErrorMessage(error) }, { status: 500 })
return new NextResponse(JSON.stringify({ version: 1, templates: data }, null, 2), {
headers: {
'Content-Type': 'application/json',
'Content-Disposition': 'attachment; filename="bokforingsmallar.json"',
},
})
},
)