lldap/app/src/components/mod.rs
Valentin Tolmer 402ef2f83a app: Add a component to delete a user
Also adds a way to hook to the bootstrap modals to show or hide them.
2021-09-24 16:46:30 +02:00

14 lines
271 B
Rust

pub mod add_user_to_group;
pub mod app;
pub mod change_password;
pub mod create_user;
pub mod delete_user;
pub mod login;
pub mod logout;
pub mod remove_user_from_group;
pub mod router;
pub mod select;
pub mod user_details;
pub mod user_details_form;
pub mod user_table;