16 lines
546 B
JavaScript
16 lines
546 B
JavaScript
import { getFeeCategories } from '../../database/getFeeCategories.js';
|
|
import { getLotTypes, getOccupancyTypes } from '../../helpers/functions.cache.js';
|
|
export default async function handler(_request, response) {
|
|
const feeCategories = await getFeeCategories({}, {
|
|
includeFees: true
|
|
});
|
|
const occupancyTypes = await getOccupancyTypes();
|
|
const lotTypes = await getLotTypes();
|
|
response.render('admin-fees', {
|
|
headTitle: 'Fee Management',
|
|
feeCategories,
|
|
occupancyTypes,
|
|
lotTypes
|
|
});
|
|
}
|