mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
restructure
This commit is contained in:
parent
9eadcce0eb
commit
b1b1db29b9
@ -201,21 +201,6 @@ class InvenTreePlugin(MixinBase, MetaBase):
|
|||||||
|
|
||||||
self.define_package()
|
self.define_package()
|
||||||
|
|
||||||
@property
|
|
||||||
def _is_package(self):
|
|
||||||
"""
|
|
||||||
Is the plugin delivered as a package
|
|
||||||
"""
|
|
||||||
return getattr(self, 'is_package', False)
|
|
||||||
|
|
||||||
@property
|
|
||||||
def is_sample(self):
|
|
||||||
"""
|
|
||||||
Is this plugin part of the samples?
|
|
||||||
"""
|
|
||||||
path = str(self.package_path)
|
|
||||||
return path.startswith('plugin/samples/')
|
|
||||||
|
|
||||||
# region properties
|
# region properties
|
||||||
@property
|
@property
|
||||||
def description(self):
|
def description(self):
|
||||||
@ -278,6 +263,21 @@ class InvenTreePlugin(MixinBase, MetaBase):
|
|||||||
return lic
|
return lic
|
||||||
# endregion
|
# endregion
|
||||||
|
|
||||||
|
@property
|
||||||
|
def _is_package(self):
|
||||||
|
"""
|
||||||
|
Is the plugin delivered as a package
|
||||||
|
"""
|
||||||
|
return getattr(self, 'is_package', False)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_sample(self):
|
||||||
|
"""
|
||||||
|
Is this plugin part of the samples?
|
||||||
|
"""
|
||||||
|
path = str(self.package_path)
|
||||||
|
return path.startswith('plugin/samples/')
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def package_path(self):
|
def package_path(self):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user