working on timetracking module

This commit is contained in:
2025-08-15 14:35:56 +02:00
parent 84075b4634
commit 5a4028d774
7 changed files with 34 additions and 3 deletions

View File

@@ -29,7 +29,7 @@
}
async function loadTimes(projectId){
const url = api('times/list');
const url = api('time/list');
let data = { company_id: company_id, project_id: projectId };
const resp = await fetch(url,{
credentials : 'include',