diff options
Diffstat (limited to 'support/doc')
-rw-r--r-- | support/doc/plugins/guide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/doc/plugins/guide.md b/support/doc/plugins/guide.md index 85e5f1e7d..252cbc2e2 100644 --- a/support/doc/plugins/guide.md +++ b/support/doc/plugins/guide.md | |||
@@ -281,10 +281,10 @@ registerHook({ | |||
281 | } | 281 | } |
282 | }) | 282 | }) |
283 | ``` | 283 | ``` |
284 | * Don't try to require parent PeerTube modules, only use `peertubeHelpers`. If you need another helper or a specific, please [create an issue](https://github.com/Chocobozzz/PeerTube/issues/new) | 284 | * Don't try to require parent PeerTube modules, only use `peertubeHelpers`. If you need another helper or a specific hook, please [create an issue](https://github.com/Chocobozzz/PeerTube/issues/new) |
285 | * Don't use PeerTube dependencies. Use your own :) | 285 | * Don't use PeerTube dependencies. Use your own :) |
286 | 286 | ||
287 | If your plugin is broken with a new PeerTube release, update your code and the `peertubeEngine` `package.json` field. | 287 | If your plugin is broken with a new PeerTube release, update your code and the `peertubeEngine` field of your `package.json` field. |
288 | This way, older PeerTube versions will still use your old plugin, and new PeerTube versions will use your updated plugin. | 288 | This way, older PeerTube versions will still use your old plugin, and new PeerTube versions will use your updated plugin. |
289 | 289 | ||
290 | ### Spam/moderation plugin | 290 | ### Spam/moderation plugin |