diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2018-12-12 11:05:31 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2018-12-15 14:50:30 +0100 |
commit | f6266188822ffc2c300932cdbf2f4681f6cb4321 (patch) | |
tree | 4a85fe9bcda5e0bd3c5057b7543acb0fcebfb178 /wsd/Storage.hpp | |
parent | abfb9c8ffacc6525cb68f7242e36120ad66fc24e (diff) |
WOPI: Added HideUserList to CheckFileInfo
Change-Id: Id0f9597d52fb339162a9ce4f622aa39694d1a25e
Diffstat (limited to 'wsd/Storage.hpp')
-rw-r--r-- | wsd/Storage.hpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/wsd/Storage.hpp b/wsd/Storage.hpp index 77a2f675b..2b926eb97 100644 --- a/wsd/Storage.hpp +++ b/wsd/Storage.hpp @@ -324,6 +324,7 @@ public: const bool userCanNotWriteRelative, const bool enableInsertRemoteImage, const bool enableShare, + const bool hideUserList, const TriState disableChangeTrackingShow, const TriState disableChangeTrackingRecord, const TriState hideChangeTrackingControls, @@ -345,6 +346,7 @@ public: _userCanNotWriteRelative(userCanNotWriteRelative), _enableInsertRemoteImage(enableInsertRemoteImage), _enableShare(enableShare), + _hideUserList(hideUserList), _disableChangeTrackingShow(disableChangeTrackingShow), _disableChangeTrackingRecord(disableChangeTrackingRecord), _hideChangeTrackingControls(hideChangeTrackingControls), @@ -432,10 +434,12 @@ public: bool _disableInactiveMessages; /// If set to false, users can access the save-as functionality bool _userCanNotWriteRelative; - /// if set to true, users can access the insert remote image functionality + /// If set to true, users can access the insert remote image functionality bool _enableInsertRemoteImage; - /// if set to true, users can access the file share functionality + /// If set to true, users can access the file share functionality bool _enableShare; + /// If set to true, user list on the status bar will be hidden + bool _hideUserList; /// If we should disable change-tracking visibility by default (meaningful at loading). TriState _disableChangeTrackingShow; /// If we should disable change-tracking ability by default (meaningful at loading). |