feat: add pending student registration flow and pricing APIs.

Support public class lookup, user provisioning, installment pricing, and admin approval before final enrollment.
This commit is contained in:
2026-08-16 08:42:25 +03:30
parent fafc362689
commit cd98adff84
13 changed files with 678 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
'use strict';
const FULL_PAYMENT_DISCOUNT = 500_000;
const CLASS_REQUEST_DEPOSIT_RATE = 0.10;
module.exports = {
FULL_PAYMENT_DISCOUNT,
CLASS_REQUEST_DEPOSIT_RATE
};