Ignore:
Timestamp:
06/22/26 19:00:39 (2 weeks ago)
Author:
Andrej <asumanovski@…>
Branches:
master
Children:
c0086c0
Parents:
194c016
Message:

Switched to dockerized db and improved Task model and Task Ui

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/api/discipline.js

    r194c016 r545738f  
    8181}
    8282
     83export async function updateCustomCategoryTaskStatus(customTrackingId, taskId, status) {
     84  const res = await api.patch(
     85    `/discipline/custom-tracking-categories/${customTrackingId}/tasks/${taskId}/status`,
     86    { status }
     87  );
     88  return res?.data;
     89}
     90
    8391export async function deleteCustomCategoryTask(customTrackingId, taskId) {
    8492  return api.delete(
Note: See TracChangeset for help on using the changeset viewer.