Signals from AdminUserRepository
The lback.repositories.admin_user_repository.AdminUserRepository handles direct database interactions for AdminUser entities. This repository emits signals at critical stages of the create, update, and delete operations, providing essential hooks for auditing changes to admin user data, triggering related business logic, or integrating with external data synchronization services.
Signal Name |
Description |
Arguments (kwargs) |
|---|---|---|
|
Emitted just before a new AdminUser instance is created and added to the database session. |
|
|
Emitted immediately after a new AdminUser instance has been successfully created and added to the database session (but not yet committed). |
|
|
Emitted just before an existing AdminUser instance is updated with new data in the database session. |
|
|
Emitted immediately after an existing AdminUser instance has been successfully updated in the database session (but not yet committed). |
|
|
Emitted just before an AdminUser instance is marked for deletion in the database session. |
|
|
Emitted immediately after an AdminUser instance has been successfully marked for deletion in the database session (but not yet committed). |
|