23 lines
633 B
TypeScript
23 lines
633 B
TypeScript
import type { Request, Response } from 'express'
|
|
|
|
import getFuneralHome from '../../database/getFuneralHome.js'
|
|
import { getConfigProperty } from '../../helpers/config.helpers.js'
|
|
|
|
export default function handler(request: Request, response: Response): void {
|
|
const funeralHome = getFuneralHome(request.params.funeralHomeId)
|
|
|
|
if (funeralHome === undefined) {
|
|
response.redirect(
|
|
`${getConfigProperty('reverseProxy.urlPrefix')}/funeralHomes/?error=funeralHomeIdNotFound`
|
|
)
|
|
return
|
|
}
|
|
|
|
response.render('funeralHome-edit', {
|
|
headTitle: funeralHome.funeralHomeName,
|
|
|
|
funeralHome,
|
|
isCreate: false
|
|
})
|
|
}
|