feat: add class registration pages for enrollment and class requests.

Wire class cards to payment flows with plan terms, user provisioning, and a disabled pay button until the gateway is ready.
This commit is contained in:
2026-08-16 08:42:25 +03:30
parent 06d091156c
commit 15b699a7c7
7 changed files with 697 additions and 2 deletions
+1
View File
@@ -2,5 +2,6 @@ import axiosInstance from './axiosInstance'
export const classesApi = {
getAll: (params = {}) => axiosInstance.get('/classes/user/get-all', { params }),
getOne: (id) => axiosInstance.get(`/classes/user/get-one/${id}`),
getMyClasses: (params = {}) => axiosInstance.get('/classes/user/my-classes', { params })
}