-
```
Folks,
Going off the meeting transcript... have a look at Django Signals
(http://docs.djangoproject.com/en/dev/topics/signals/#topics-signals). This
provides a way to implement activity trackin…
-
This is a possible on-call improvement so that we don't need to add custom code to each celery task to get its code owner marked.
This was tried in https://github.com/openedx/edx-platform/issues/3317…
-
-
**# Bug Report: Foreign Key Relationship Issue in Django Admin User Model
## Description
When attempting to save changes to the User model in the Django admin interface, an `IntegrityError` is r…
-
Using the same channel, it seems like we cannot listen on multiple events, is that on purpose?
I'd have expected to write "one channel" per model, but it feels like we need to write as many channel…
-
### Environment
* Nautobot version: 2.3.11
* Python version: 3.11.10
* Database platform, version: Whatever demo.nautobot.com uses
* Middleware(s): No extras
### Steps to Reproduce
1. Log into…
-
I am working on an application that utilizes the signals emitted from the user_added and user_removed events from organizations.signals. However, they don't appear to be firing, or I am unable to rece…
-
I've been writing some signals for a Django project
Django==2.2
Python==3.6.8
PostgreSQL==11.3
After writing and testing some pre_save and post_save signals which update product cart totals base…
-
```
What steps will reproduce the problem?
1. create a deprived instance of BaseModel
2. hook up post_save signal
3. call save()
4. expect post_save signal to trigger and execute the handler
What is …
-
I have followed the documentation and to be honest I am a bit lost. I wanted to test a simple event where the user logs in an a query is sent to a server.
I have registered my hooks
```python
H…