-
Notifications
You must be signed in to change notification settings - Fork 14.4k
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
pass the standalone
request arg in the /caravel/slices/<slice_id>/ endpoint redirect
#876
pass the standalone
request arg in the /caravel/slices/<slice_id>/ endpoint redirect
#876
Conversation
dae508e
to
6808aed
Compare
how can I fix the coveralls blocker? :( .02% doesn't seem problmatic) |
(slc.slice_name, 'json_endpoint', slc.viz.json_endpoint), | ||
(slc.slice_name, 'csv_endpoint', slc.viz.csv_endpoint), | ||
(slc.slice_name, 'slice_id', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need to test these 3 endpoints for all slices, let's pick one and write another unit test that tests using assertRedirects
remove unused import.
…te standalone redirect logic for Javascript 'false' instead of Python False
6808aed
to
77f2593
Compare
@mistercrunch I tried messing with the Also updated the |
Nice! |
Gave some context in slack, but this will be useful for us to auto-generate standalone viz's from a slice's
id
. This endpoint currently re-directs to a slice's url, but ignores all arguments passed to it.@mistercrunch