11 lines
395 B
JavaScript
11 lines
395 B
JavaScript
import { getLotTypes } from '../../helpers/functions.cache.js';
|
|
import * as configFunctions from '../../helpers/functions.config.js';
|
|
export const handler = (_request, response) => {
|
|
const lotTypes = getLotTypes();
|
|
response.render('admin-lotTypes', {
|
|
headTitle: configFunctions.getProperty('aliases.lot') + ' Type Management',
|
|
lotTypes
|
|
});
|
|
};
|
|
export default handler;
|