Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
patricesalem
Creator II
Creator II

Avoiding automatic sharing of bookmark created by users

Hello

 

With our current setup, any user creating his own bookmark makes it available, automatically, to all users.

I would like that users access only to their own bookmarks without making them available to everybody.

I couldn't find any security rule mentionning Bookmarks

We're running under Qlik sense server sep 2019. 

 

Any idea ?

 

thanks

 

1 Solution

Accepted Solutions
patricesalem
Creator II
Creator II
Author

hi 

I would like to thank and congratulate myself for finding out the answer (thanks to other topics I have to say) :

 

(
((resource.name!="Vizlib" and user.@App_Access_PSM!="Vizlib")) or ((resource.name!="*" and user.@App_Access_PSM="Vizlib"))
)
and
(resource.objectType!="bookmark"
and resource.objectType != "hiddenbookmark")
or
(resource.objectType="bookmark" and resource.name like "*SHARE*")

View solution in original post

4 Replies
patricesalem
Creator II
Creator II
Author

Hello again

 

sorry to bump on my post, I would appreciate some guidelines on where to change the parameter that makes all users sharing their own bookmarks.

Please let me know if my question is not clear enough and if you need some more info about our setup...

thanks

patricesalem
Creator II
Creator II
Author

Trying to advance by my own...

I have tried to create the following security rule but I don't see any difference :

patricesalem_0-1588183401775.png

It should allow users to share bookmars only containing "SHARE" in the title.

No difference, I still see bookmarks from all other users :

patricesalem_1-1588183506362.png

Any tip please as I'm stuck and users start complaining about it...

THANKS

patricesalem
Creator II
Creator II
Author

hi 

I would like to thank and congratulate myself for finding out the answer (thanks to other topics I have to say) :

 

(
((resource.name!="Vizlib" and user.@App_Access_PSM!="Vizlib")) or ((resource.name!="*" and user.@App_Access_PSM="Vizlib"))
)
and
(resource.objectType!="bookmark"
and resource.objectType != "hiddenbookmark")
or
(resource.objectType="bookmark" and resource.name like "*SHARE*")

leenlart
Creator
Creator

Hello Patricesalem, 

We are having this issue also.

Can you walk me through your solution please ?

What does your first section do ?

((resource.name!="Vizlib" and user.@App_Access_PSM!="Vizlib")) or ((resource.name!="*" and user.@App_Access_PSM="Vizlib"))