updated absensi

This commit is contained in:
2025-10-15 15:25:11 +07:00
parent 96d206d892
commit 9389edf24d
5 changed files with 108 additions and 15 deletions

View File

@@ -6,6 +6,10 @@ const history = async (req, res) => {
return response;
};
const getAll = async (req, res) => {
const response = await services.getAll(req, res)
}
const create = async (req, res) => {
const response = await services.create(req, res);
return response;
@@ -26,10 +30,17 @@ const destroy = async (req, res) => {
return response;
};
const checkLocation = async (req, res) => {
const response = await services.checkLocation(req, res)
return response
}
module.exports = {
create,
history,
update,
destroy,
clockOut
clockOut,
getAll,
checkLocation
}