-
Notifications
You must be signed in to change notification settings - Fork 13.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Access control on the explore page #504
Comments
Have you had any further feedback on this @x4base - we're trying to understand how to do the same (new to superset!) |
Seems like removing |
Tried it out @mistercrunch but not sure if my requirement was the same as described here. I'm looking for user to have restricted access to explore view to only be able to view the chart in greater detail + download the CSV data behind the chart. Right now if I give them can_explore permission they can do everything in the explore view including changing the slice configuration from the left menu which we don't want them to do |
@shrutimkrishnan I'm guessing if you could export CSV from the dashboard view you wouldn't need explore at all |
@mistercrunch yup exactly, saw you're taking this feature on in the other entry so thanks a lot! Sent from my Google Pixel using FastHub |
I want to build dashboards for the users, but don't want them to send custom queries. If I take away their can_save and can_edit permission, they still can sent custom queries. So I want to prohibit the user from entering the pages like /caravel/explore/druid/3 . But if I take away their can_explore permission, they will be unable to see the slices on the dashboard. So this is what I am trying to add in view.py:
Do you think it is a good idea to design it this way? How can I create the new permission "can_custom_query" in
caravel init
? ThanksThe text was updated successfully, but these errors were encountered: