aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/views.py
diff options
context:
space:
mode:
authorSean Smith <ssmith@iol.unh.edu>2021-03-24 17:22:54 -0400
committerSean Smith <ssmith@iol.unh.edu>2021-03-29 16:21:47 -0400
commitd007fa661e2faf77e70cb75c8d520941e907ebf7 (patch)
tree69b83bf903635768ac8614bfd799de998bb046ea /src/account/views.py
parentf6753ae2c5f54fb79375214590e565218b1bf0d7 (diff)
Remove exposure of users on dashboard
Signed-off-by: Sean Smith <ssmith@iol.unh.edu> Change-Id: I83b93d9247a7eafb54e4a5761d1423a504d86400
Diffstat (limited to 'src/account/views.py')
-rw-r--r--src/account/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/account/views.py b/src/account/views.py
index 2e1ab94..b74126e 100644
--- a/src/account/views.py
+++ b/src/account/views.py
@@ -209,7 +209,7 @@ class UserListView(TemplateView):
template_name = "account/user_list.html"
def get_context_data(self, **kwargs):
- users = User.objects.all()
+ users = UserProfile.objects.filter(public_user=True).select_related('user')
context = super(UserListView, self).get_context_data(**kwargs)
context.update({'title': "Dashboard Users", 'users': users})
return context