location controller updated with heading and created new models and controllers for remaining modules
This commit is contained in:
@@ -20,7 +20,7 @@ export const createOrEditProfileController = async (req, res, next) => {
|
||||
}
|
||||
};
|
||||
|
||||
export const getProfileController = async (req, res, next) => {
|
||||
export const getOwnProfileController = async (req, res, next) => {
|
||||
try {
|
||||
const { user } = res.locals;
|
||||
const profile = await getProfileByQuery({ userId: user.id });
|
||||
@@ -30,4 +30,3 @@ export const getProfileController = async (req, res, next) => {
|
||||
next(error);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user