2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-15 11:35:41 +00:00

Add mixin class to respond to internal events

This commit is contained in:
Oliver
2022-01-07 22:22:59 +11:00
parent 8ff3bf1ad1
commit 63eb49777a
2 changed files with 66 additions and 1 deletions

View File

@ -2,10 +2,11 @@
Utility class to enable simpler imports
"""
from ..builtin.integration.mixins import AppMixin, SettingsMixin, ScheduleMixin, UrlsMixin, NavigationMixin
from ..builtin.integration.mixins import AppMixin, SettingsMixin, EventMixin, ScheduleMixin, UrlsMixin, NavigationMixin
__all__ = [
'AppMixin',
'EventMixin',
'NavigationMixin',
'ScheduleMixin',
'SettingsMixin',