11 lines
373 B
JavaScript
11 lines
373 B
JavaScript
import * as configFunctions from "../../helpers/functions.config.js";
|
|
import { getMaps } from "../../helpers/lotOccupancyDB/getMaps.js";
|
|
export const handler = (_request, response) => {
|
|
const maps = getMaps();
|
|
response.render("map-search", {
|
|
headTitle: configFunctions.getProperty("aliases.map") + " Search",
|
|
maps
|
|
});
|
|
};
|
|
export default handler;
|