17 lines
623 B
JavaScript
17 lines
623 B
JavaScript
import * as configFunctions from '../../helpers/functions.config.js';
|
|
import { getMapSVGs } from '../../helpers/functions.map.js';
|
|
export async function handler(_request, response) {
|
|
const map = {
|
|
mapCity: configFunctions.getConfigProperty('settings.map.mapCityDefault'),
|
|
mapProvince: configFunctions.getConfigProperty('settings.map.mapProvinceDefault')
|
|
};
|
|
const mapSVGs = await getMapSVGs();
|
|
response.render('map-edit', {
|
|
headTitle: `${configFunctions.getConfigProperty('aliases.map')} Create`,
|
|
isCreate: true,
|
|
map,
|
|
mapSVGs
|
|
});
|
|
}
|
|
export default handler;
|