feat: добавил поддержку подписки на календарь и экспорт расписания лекций в формате .ics
Backend CI / build-and-test (push) Successful in 57s
Frontend CI / build-and-check (push) Failing after 26s
🚀 Create and publish a Docker image / Detect changes in backend and frontend (push) Successful in 11s
🚀 Create and publish a Docker image / Build & publish backend image (push) Successful in 2m33s
🚀 Create and publish a Docker image / Build & publish frontend image (push) Successful in 33s
🚀 Create and publish a Docker image / Update stack on Portainer (push) Successful in 8s

This commit is contained in:
2026-06-02 22:10:15 +03:00
parent 7050851bd4
commit 136bcce7db
16 changed files with 639 additions and 8 deletions
+7 -1
View File
@@ -1,4 +1,4 @@
import { apiRequest, extractItems } from './client'
import { apiRequest, apiRequestBlob, extractItems } from './client'
import type {
AchievementDto,
AuthResponse,
@@ -19,6 +19,7 @@ import type {
UpdateReviewPromptRequest,
UserAchievementDto,
AdminDashboardStatsDto,
CalendarSubscriptionDto,
CurrentUserDto,
UserDto,
UserQuery,
@@ -76,6 +77,11 @@ export const usersApi = {
)
return extractItems(payload)
},
downloadMyEnrollmentsIcs: () => apiRequestBlob('/users/me/enrollments.ics'),
downloadEnrollmentIcs: (lectureId: string | number) =>
apiRequestBlob(`/users/me/enrollments/${lectureId}.ics`),
getCalendarSubscription: () =>
apiRequest<CalendarSubscriptionDto>('/users/me/enrollments/calendar-subscription'),
async myAchievements() {
const payload = await apiRequest<
PagedResult<UserAchievementDto> | UserAchievementDto[] | AchievementDto[]