10 lines
390 B
JavaScript
10 lines
390 B
JavaScript
import { getBurialSiteTypes } from '../../helpers/functions.cache.js';
|
|
import { getConfigProperty } from '../../helpers/config.helpers.js';
|
|
export default async function handler(_request, response) {
|
|
const lotTypes = await getBurialSiteTypes();
|
|
response.render('admin-lotTypes', {
|
|
headTitle: `${getConfigProperty('aliases.lot')} Type Management`,
|
|
lotTypes
|
|
});
|
|
}
|