diff options
Diffstat (limited to '')
-rw-r--r-- | server/views.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/views.py b/server/views.py index 1fb80ac..fb4af8a 100644 --- a/server/views.py +++ b/server/views.py @@ -1651,10 +1651,11 @@ def docpreview(request): # get document
document = Document.objects.filter(code=code)[0]
+ doc_group = document.group.name
parent_group = document.user.groups.values_list('name', flat=True)[0]
# user has not permission to view document
- if parent_group not in groups:
+ if doc_group not in groups:
return
# prepare images in base64
|