nxtgauge-backend-rust/apps/users/src/handlers/mod.rs
Ashwin Kumar 3b28d9fd36 feat: add designation management CRUD backend
Full CRUD handler for designations with department JOIN, employee count,
level/can_manage_team/can_approve fields, and migration to extend the
minimal designations table with all management columns.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-27 19:20:55 +01:00

11 lines
210 B
Rust

pub mod approvals;
pub mod auth;
pub mod config;
pub mod dashboard;
pub mod departments;
pub mod designations;
pub mod notifications;
pub mod onboarding;
pub mod permissions;
pub mod roles;
pub mod user_roles;