diff --git a/CHANGELOG.md b/CHANGELOG.md index cff1063c..87231c5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Change Log +- python: features tips for anonymous - php-laravel: features tips for anonymous - php: features tips for anonymous - java: features tips for anonymous diff --git a/web/documentserver-example/python/src/utils/users.py b/web/documentserver-example/python/src/utils/users.py index 0ffb8a43..8e045dd7 100644 --- a/web/documentserver-example/python/src/utils/users.py +++ b/web/documentserver-example/python/src/utils/users.py @@ -91,7 +91,8 @@ descr_user_0 = [ "Can't protect file", "View file without collaboration", "Can’t submit forms", - "Can't refresh outdated file" + "Can't refresh outdated file", + "Tour of tips when opening a document" ] USERS = [ diff --git a/web/documentserver-example/python/src/views/actions.py b/web/documentserver-example/python/src/views/actions.py index 4a8a2b74..74f254e5 100755 --- a/web/documentserver-example/python/src/views/actions.py +++ b/web/documentserver-example/python/src/views/actions.py @@ -345,6 +345,9 @@ def edit(request): # settings for the Open file location menu button and upper right corner button 'goback': user.goback if user.goback is not None else '', 'close': user.close if user.close is not None else '', + 'features': { + 'featuresTips': user.id == 'uid-0' + } } } }