Remove computed fields artifacts no longer used

Remove deleted field from notification payload
This commit is contained in:
AlanCoding
2020-01-27 07:47:58 -05:00
parent e59f3982ae
commit 3bbce18173
6 changed files with 19 additions and 56 deletions

View File

@@ -16,13 +16,10 @@ from awx.main.models import (
Job, AdHocCommand, ProjectUpdate, InventoryUpdate,
SystemJob, WorkflowJob, Notification
)
from awx.main.signals import ( # noqa
emit_update_inventory_on_created_or_deleted,
emit_update_inventory_computed_fields,
from awx.main.signals import (
disable_activity_stream,
disable_computed_fields
)
from django.db.models.signals import post_save, post_delete, m2m_changed # noqa
class Command(BaseCommand):