feat: add employee timings view, notification templates view, and professor sms preview

This commit is contained in:
2026-08-24 19:31:20 +03:30
parent 6d64c2931d
commit 05d96fd550
11 changed files with 1541 additions and 190 deletions
+3 -1
View File
@@ -12,5 +12,7 @@ export const classApi = {
registerUsers: (classId, userIds, notify) =>
axiosInstance.post(`/classes/admin/${classId}/register-users`, { userIds, notify }),
removeUser: (classId, userId) =>
axiosInstance.delete(`/classes/admin/${classId}/students/${userId}`)
axiosInstance.delete(`/classes/admin/${classId}/students/${userId}`),
sendPlanToProfessor: (classId) =>
axiosInstance.post(`/classes/admin/${classId}/send-plan-professor`)
};