mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 11:07:08 +00:00
15 lines
274 B
JavaScript
15 lines
274 B
JavaScript
|
|
const { gis } = require('../../../../lib/db');
|
|
|
|
module.exports = async function (req, res, next) {
|
|
|
|
try {
|
|
res.set("Content-Type", "application/geo+json");
|
|
res.status(200).send(await gis.project.bbox(req.params.project));
|
|
next();
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
|
|
};
|