From e603b34267203f17eda792fd26f43644c8c12914 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Thu, 8 Aug 2019 10:41:44 +0100 Subject: [PATCH] Added extra docs --- openflexure_microscope/api/v1/blueprints/plugins.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openflexure_microscope/api/v1/blueprints/plugins.py b/openflexure_microscope/api/v1/blueprints/plugins.py index 9c32dacd..ff7b1183 100644 --- a/openflexure_microscope/api/v1/blueprints/plugins.py +++ b/openflexure_microscope/api/v1/blueprints/plugins.py @@ -13,6 +13,12 @@ class PluginSchemaAPI(MicroscopeView): .. :quickref: Plugin; Get schemas + Returns an array of present plugin schemas (describing plugin user interfaces.) + Please note, this is *not* a list of all enabled plugins, only those with associated + user interface forms. + + A complete list of enabled plugins can be found in the microscope state. + """ out = self.microscope.plugin.schemas return jsonify(out)