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