Add in bare bones yet functional HR goal: goal_hr_schedule_pto

This commit is contained in:
Laine
2025-03-12 16:54:13 -04:00
parent 291bace53d
commit ea1ad383bb
9 changed files with 290 additions and 25 deletions

View File

@@ -0,0 +1,17 @@
def calendar_conflict(args: dict) -> dict:
check_self = args.get("check_self_calendar")
check_team = args.get("check_team_calendar")
conflict_list = []
conflict = {
"calendar": "self",
"title": "Meeting with Karen",
"date": "2025-12-02",
"time": "10:00AM",
}
conflict_list.append(conflict)
return {
"conflicts": conflict_list,
}