2
0
mirror of https://github.com/inventree/inventree-docs.git synced 2025-04-27 13:16:43 +00:00

fix typo in UrlsMixin usage (#454)

This commit is contained in:
Philipp Fruck 2023-03-19 20:54:14 +00:00 committed by GitHub
parent 05936b1444
commit 81a29adc3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ Use the class constant `URLS` for a array of URLs that should be added to InvenT
The array has to contain valid URL patterns as defined in the [django documentation](https://docs.djangoproject.com/en/stable/topics/http/urls/).
``` python
class MyUrlsPlugin(URLsMixin, InvenTreePlugin):
class MyUrlsPlugin(UrlsMixin, InvenTreePlugin):
NAME = "UrlsMixin"