From 03c2439efe469666f738f85a0c5bb1e1449488ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Tue, 14 Jul 2015 20:20:25 +0200 Subject: [PATCH] New plugin mixin "WizardPlugin" --- src/octoprint/plugin/types.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/octoprint/plugin/types.py b/src/octoprint/plugin/types.py index bf702cb6..70d7b5b7 100644 --- a/src/octoprint/plugin/types.py +++ b/src/octoprint/plugin/types.py @@ -450,6 +450,12 @@ class TemplatePlugin(OctoPrintPlugin, ReloadNeedingPlugin): return os.path.join(self._basefolder, "templates") +class WizardPlugin(OctoPrintPlugin, ReloadNeedingPlugin): + + def is_wizard_required(self): + return False + + class SimpleApiPlugin(OctoPrintPlugin): """ Utilizing the ``SimpleApiPlugin`` mixin plugins may implement a simple API based around one GET resource and one