12 lines
675 B
JavaScript
12 lines
675 B
JavaScript
import { getPreviousBurialSiteId } from '../../helpers/burialSites.helpers.js';
|
|
import { getConfigProperty } from '../../helpers/config.helpers.js';
|
|
export default async function handler(request, response) {
|
|
const burialSiteId = Number.parseInt(request.params.burialSiteId, 10);
|
|
const previousBurialSiteId = await getPreviousBurialSiteId(burialSiteId);
|
|
if (previousBurialSiteId === undefined) {
|
|
response.redirect(`${getConfigProperty('reverseProxy.urlPrefix')}/burialSites/?error=noPreviousBurialSiteIdFound`);
|
|
return;
|
|
}
|
|
response.redirect(`${getConfigProperty('reverseProxy.urlPrefix')}/burialSites/${previousBurialSiteId.toString()}`);
|
|
}
|