From 470e8903db499eb5ffdcadb475d665602f9f0f3f Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 19 Jan 2024 11:01:45 -0500 Subject: [PATCH] Fix user table configuration --- netbox/core/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/core/views.py b/netbox/core/views.py index 415d2ddfc..0bb55ba1f 100644 --- a/netbox/core/views.py +++ b/netbox/core/views.py @@ -248,7 +248,7 @@ class PluginListView(LoginRequiredMixin, View): # Look up app config by package name apps.get_app_config(plugin.rsplit('.', 1)[-1]) for plugin in settings.PLUGINS ] - table = tables.PluginTable(plugins) + table = tables.PluginTable(plugins, user=request.user) table.configure(request) return render(request, 'core/plugin_list.html', {