location update optimized with schema changes and geoJson Compatability testing endpoint with encrypted key authorization

This commit is contained in:
Shibi Chakkaravarthy
2026-04-17 14:15:11 +05:30
parent b44abf9c88
commit 92769cfd38
19 changed files with 459 additions and 27 deletions
+25
View File
@@ -0,0 +1,25 @@
import {
createLocation,
getLocationByQuery,
getLocationByRadius,
} from "../models/Location/operations";
export const createLocationController = async (req, res) => {
try {
const { user } = res.locals;
console.log("BG LOCATIONREQUEST BODY", req.body, user);
// const location = await createLocation({ ...req.body, user: user?.id });
res.status(200).json({ location: "location" });
} catch (error) {
res.status(500).json({ error: error.message });
}
};
export const getLocationController = async (req, res) => {
try {
const location = await getLocationByQuery(req.query);
res.status(200).json(location);
} catch (error) {
res.status(500).json({ error: error.message });
}
};