alex 2024-01-21 19:28:32 +01:00
parent 9c687d355c
commit afe5f7b18d
1 changed files with 0 additions and 2 deletions

View File

@ -120,7 +120,6 @@ export async function AddEmployee(req: Request, res: Response) {
userId: userId, userId: userId,
pass: process.env.TERMIN_PLANNER_AUTHORIZATION_PASSWORD as string, pass: process.env.TERMIN_PLANNER_AUTHORIZATION_PASSWORD as string,
}) })
.then((res) => console.log(res))
.catch((err) => { .catch((err) => {
logger.info("err %s", err); logger.info("err %s", err);
}); });
@ -381,7 +380,6 @@ export async function DeleteEmployee(req: Request, res: Response) {
userId: userId, userId: userId,
pass: process.env.TERMIN_PLANNER_AUTHORIZATION_PASSWORD as string, pass: process.env.TERMIN_PLANNER_AUTHORIZATION_PASSWORD as string,
}) })
.then((res) => console.log(res))
.catch((err) => { .catch((err) => {
logger.info("err %s", err); logger.info("err %s", err);
}); });