- Add team_leader access to /admin/users endpoint for user list viewing - Add PDF certificate generation for AI Kurzy with Puppeteer - Add certificate assets (background, signatures) - Add getPrilohaById and download endpoint for attachments - Fix time tracking service permissions for team_leader - Fix timesheet controller/service permissions for team_leader - Fix calendar badge to include reminders in count - Add lastSeen to message service for online indicator Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
516 B
JavaScript
8 lines
516 B
JavaScript
export { getAllKurzy, getKurzById, createKurz, updateKurz, deleteKurz, getKurzyStats } from './ai-kurzy/kurzy.service.js';
|
|
export { getAllUcastnici, getUcastnikById, createUcastnik, updateUcastnik, deleteUcastnik } from './ai-kurzy/ucastnici.service.js';
|
|
export {
|
|
getAllRegistracie, getRegistraciaById, createRegistracia, updateRegistracia, deleteRegistracia,
|
|
getCombinedTableData, updateField,
|
|
getPrilohyByRegistracia, createPriloha, deletePriloha, getPrilohaById,
|
|
} from './ai-kurzy/registracie.service.js';
|