2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-15 08:01:09 +00:00

Move more paths to basic path ()

* move more paths to basic path

* changed url route to only match fully - fixed test

* revert path changes on labelprint pages

* fix not found/redirect

* revert test change
This commit is contained in:
Matthias Mair
2024-01-18 06:05:10 +00:00
committed by GitHub
parent c3a5d777b1
commit b8b3dfc90e
22 changed files with 684 additions and 798 deletions
InvenTree
InvenTree
build
common
company
label
order
part
plugin
api.py
base
barcodes
integration
samples
integration
report
stock
users
web
docs/docs/extend/plugins

@@ -39,7 +39,7 @@ def view_test(self, request):
def setup_urls(self):
return [
re_path(r'^test/', self.view_test, name='test')
path('test/', self.view_test, name='test')
]
```