diff options
-rw-r--r-- | server/views.py | 3 | ||||
-rw-r--r-- | version.txt | 2 |
2 files changed, 3 insertions, 2 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
diff --git a/version.txt b/version.txt index c37a3de..82de9ac 100644 --- a/version.txt +++ b/version.txt @@ -1,2 +1,2 @@ version=0.6 -rev=9 +rev=10 |