delete users

This commit is contained in:
2025-07-20 14:06:29 +02:00
parent 41e23af55c
commit 6e0880eb3d
21 changed files with 530 additions and 264 deletions

View File

@@ -121,11 +121,19 @@ impl AuthNotifier for NotifierDebugLogger {
tracing::debug!("[Notifier] Registered user {}", user.name());
}
async fn user_created(&self, creator: &User, created: &User) {
async fn user_created(&self, creator: &User, user: &User) {
tracing::debug!(
"[Notifier] Admin user {} created user {}",
creator.name(),
created.name()
user.name()
);
}
async fn user_deleted(&self, deleter: &User, user: &User) {
tracing::debug!(
"[Notifier] Admin user {} deleted user {}",
deleter.name(),
user.name()
);
}