diff --git a/InvenTree/plugins/samples/integration/sample.py b/InvenTree/plugins/samples/integration/sample.py index d947874e0b..119bd19d3a 100644 --- a/InvenTree/plugins/samples/integration/sample.py +++ b/InvenTree/plugins/samples/integration/sample.py @@ -15,6 +15,8 @@ class SampleIntegrationPlugin(SettingsMixin, UrlsMixin, NavigationMixin, Integra PLUGIN_SLUG = "sample" PLUGIN_TITLE = "Sample Plugin" + NAVIGATION_TAB_NAME = "Sample Nav" + def view_test(self, request): """very basic view""" return HttpResponse(f'Hi there {request.user.username} this works')