2026-04-02 13:09:43 +02:00
|
|
|
pub mod job;
|
2026-03-17 20:42:51 +01:00
|
|
|
pub mod config;
|
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 onboarding_state;
|
2026-04-02 13:09:43 +02:00
|
|
|
pub mod activity_log;
|
2026-03-17 20:42:51 +01:00
|
|
|
pub mod role;
|
|
|
|
|
pub mod user;
|
|
|
|
|
pub mod photographer;
|
|
|
|
|
pub mod tutor;
|
|
|
|
|
pub mod company;
|
|
|
|
|
pub mod job_seeker;
|
|
|
|
|
pub mod customer;
|
|
|
|
|
pub mod makeup_artist;
|
|
|
|
|
pub mod developer;
|
|
|
|
|
pub mod video_editor;
|
|
|
|
|
pub mod graphic_designer;
|
|
|
|
|
pub mod social_media_manager;
|
|
|
|
|
pub mod fitness_trainer;
|
|
|
|
|
pub mod catering_service;
|
2026-04-05 21:14:02 +02:00
|
|
|
pub mod ugc_content_creator;
|
2026-03-17 20:42:51 +01:00
|
|
|
pub mod requirement;
|
|
|
|
|
pub mod lead_request;
|
|
|
|
|
pub mod application;
|
|
|
|
|
pub mod professional;
|
2026-04-02 13:09:43 +02:00
|
|
|
pub mod employee;
|
|
|
|
|
pub mod department;
|
|
|
|
|
pub mod designation;
|
2026-04-06 03:39:41 +02:00
|
|
|
pub mod verification;
|
2026-03-17 20:42:51 +01:00
|
|
|
|