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

refactor ActionPlugin to use mixin

This commit is contained in:
Matthias
2022-01-10 00:40:19 +01:00
parent a2b88dd0fa
commit 8088bf28fe
4 changed files with 157 additions and 57 deletions

View File

@ -3,6 +3,7 @@ Utility class to enable simpler imports
"""
from ..builtin.integration.mixins import AppMixin, SettingsMixin, ScheduleMixin, UrlsMixin, NavigationMixin
from ..builtin.action.mixins import ActionMixin
__all__ = [
'AppMixin',
@ -10,4 +11,5 @@ __all__ = [
'ScheduleMixin',
'SettingsMixin',
'UrlsMixin',
'ActionMixin',
]