mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-06 23:30:24 +00:00
17 lines
420 B
Python
17 lines
420 B
Python
"""
|
|
Sample plugin which supports task scheduling
|
|
"""
|
|
|
|
from plugin import IntegrationPluginBase
|
|
from plugin.mixins import ScheduleMixin
|
|
|
|
|
|
class ScheduledTaskPlugin(ScheduleMixin, IntegrationPluginBase):
|
|
"""
|
|
A sample plugin which provides support for scheduled tasks
|
|
"""
|
|
|
|
PLUGIN_NAME = "ScheduledTasksPlugin"
|
|
PLUGIN_SLUG = "schedule"
|
|
PLUGIN_TITLE = "A plugin which provides scheduled task support"
|