From 2d2dbd2414eaf139e0f5d43486019d4cc9133288 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Tue, 12 Oct 2021 00:12:43 +0200 Subject: [PATCH] fixing paths --- docs/extend/plugins.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/extend/plugins.md b/docs/extend/plugins.md index 9a230c7..1e11e1d 100644 --- a/docs/extend/plugins.md +++ b/docs/extend/plugins.md @@ -6,7 +6,8 @@ title: Plugins The InvenTree server code supports an extensible plugin architecture, allowing custom plugins to be integrated directly into the database server. This allows development of complex behaviours which are decoupled from core InvenTree code. -InvenTree plugins are located in the directory `./InvenTree/plugins/`. +InvenTree builtin plugins are located in the directory `./InvenTree/plugin/builtin`. +Custom plugins should be placed in the directory `./InvenTree/plugins`. Plugins are discovered and loaded when the server is started. @@ -54,4 +55,4 @@ POST { } ``` -For an example of a very simple action plugin, refer to `/InvenTree/plugins/action/action.py` \ No newline at end of file +For an example of a very simple action plugin, refer to `/InvenTree/plugin/builtin/action/simpleactionplugin.py` \ No newline at end of file