2026-04-02 13:09:43 +02:00
|
|
|
pub mod admin;
|
2026-04-10 04:49:39 +02:00
|
|
|
pub mod admin_email;
|
2026-04-06 18:23:04 +02:00
|
|
|
pub mod activity_logs;
|
2026-03-19 00:30:23 +01:00
|
|
|
pub mod approvals;
|
feat: commit remaining service files, migrations, and model updates
- gateway, companies, customers, job_seekers apps updated
- users config/mod/mail handlers
- auth middleware and jwt crate updates
- db models: user, config, mod updates
- all remaining migrations: portfolio, notifications, reviews, kb, support, coupons, onboarding states
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-18 22:59:47 +01:00
|
|
|
pub mod auth;
|
2026-04-15 18:19:07 +02:00
|
|
|
pub mod ai;
|
2026-06-08 06:41:10 +05:30
|
|
|
pub mod ai_phase4;
|
2026-06-08 06:15:58 +05:30
|
|
|
pub mod ai_prompts;
|
2026-03-17 20:42:51 +01:00
|
|
|
pub mod config;
|
Add reviews, coupons, discounts, pricing packages, and reports handlers
- handlers/reviews.rs: admin CRUD for /api/admin/reviews (list, create, patch status, delete)
- handlers/coupons.rs: admin CRUD for /api/admin/coupons and /api/admin/discounts
- handlers/pricing.rs: admin CRUD for /api/admin/tracecoin-packages + /api/admin/reports/{users,revenue}
- handlers/dashboard.rs: replace all hardcoded fake data with real DB queries (registrations per day, revenue per week, live KPIs including pending approvals and total revenue)
- Migrations: extend reviews table (nullable FKs + admin fields), add coupons.title/role_keys, create discounts table
- gateway: route new admin paths to users service
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-02 18:09:50 +02:00
|
|
|
pub mod coupons;
|
2026-03-25 23:55:44 +01:00
|
|
|
pub mod dashboard;
|
2026-04-02 13:36:12 +02:00
|
|
|
pub mod kb;
|
2026-04-26 23:58:43 +02:00
|
|
|
pub mod modules;
|
feat: commit remaining service files, migrations, and model updates
- gateway, companies, customers, job_seekers apps updated
- users config/mod/mail handlers
- auth middleware and jwt crate updates
- db models: user, config, mod updates
- all remaining migrations: portfolio, notifications, reviews, kb, support, coupons, onboarding states
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-18 22:59:47 +01:00
|
|
|
pub mod notifications;
|
|
|
|
|
pub mod onboarding;
|
2026-03-25 22:15:07 +01:00
|
|
|
pub mod permissions;
|
Add reviews, coupons, discounts, pricing packages, and reports handlers
- handlers/reviews.rs: admin CRUD for /api/admin/reviews (list, create, patch status, delete)
- handlers/coupons.rs: admin CRUD for /api/admin/coupons and /api/admin/discounts
- handlers/pricing.rs: admin CRUD for /api/admin/tracecoin-packages + /api/admin/reports/{users,revenue}
- handlers/dashboard.rs: replace all hardcoded fake data with real DB queries (registrations per day, revenue per week, live KPIs including pending approvals and total revenue)
- Migrations: extend reviews table (nullable FKs + admin fields), add coupons.title/role_keys, create discounts table
- gateway: route new admin paths to users service
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-02 18:09:50 +02:00
|
|
|
pub mod pricing;
|
|
|
|
|
pub mod reviews;
|
2026-03-17 20:42:51 +01:00
|
|
|
pub mod roles;
|
2026-04-02 13:36:12 +02:00
|
|
|
pub mod support;
|
2026-03-19 00:30:23 +01:00
|
|
|
pub mod user_roles;
|
2026-03-27 21:25:31 +01:00
|
|
|
pub mod external_roles;
|
2026-04-06 03:39:41 +02:00
|
|
|
pub mod verifications;
|
2026-04-06 17:20:49 +02:00
|
|
|
pub mod profile;
|
2026-04-08 22:40:54 +02:00
|
|
|
pub mod settings;
|