mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-03 05:48:47 +00:00
* [FR] Slack notification Add slack sending method Fixes #3843 * Add global panel with notification methods * add plugin information * fix plugin lookup and link * Add settings content mixin * Add instructions for Slack setup * fix rendering of custom settings content
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
"""Utility class to enable simpler imports."""
|
|
|
|
from common.notifications import (BulkNotificationMethod,
|
|
SingleNotificationMethod)
|
|
|
|
from ..base.action.mixins import ActionMixin
|
|
from ..base.barcodes.mixins import BarcodeMixin
|
|
from ..base.event.mixins import EventMixin
|
|
from ..base.integration.mixins import (APICallMixin, AppMixin, NavigationMixin,
|
|
PanelMixin, ScheduleMixin,
|
|
SettingsContentMixin, SettingsMixin,
|
|
UrlsMixin, ValidationMixin)
|
|
from ..base.label.mixins import LabelPrintingMixin
|
|
from ..base.locate.mixins import LocateMixin
|
|
|
|
__all__ = [
|
|
'APICallMixin',
|
|
'AppMixin',
|
|
'EventMixin',
|
|
'LabelPrintingMixin',
|
|
'NavigationMixin',
|
|
'ScheduleMixin',
|
|
'SettingsContentMixin',
|
|
'SettingsMixin',
|
|
'UrlsMixin',
|
|
'PanelMixin',
|
|
'ActionMixin',
|
|
'BarcodeMixin',
|
|
'LocateMixin',
|
|
'ValidationMixin',
|
|
'SingleNotificationMethod',
|
|
'BulkNotificationMethod',
|
|
]
|