Skip to content

Commit

Permalink
Fix #26372: only show owned apps in switch instance UI
Browse files Browse the repository at this point in the history
  • Loading branch information
LEDfan committed Oct 27, 2021
1 parent b547ebc commit 8c7f7d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/static/js/shiny.api.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Shiny = window.Shiny || {};
Shiny.api = {
getProxies: function (cb, cb_fail) {
$.get(Shiny.common.staticState.contextPath + "api/proxy", function (proxies) {
$.get(Shiny.common.staticState.contextPath + "api/proxy?only_owned_proxies=true", function (proxies) {
cb(proxies);
}).fail(function (response) {
cb_fail(response);
Expand Down

0 comments on commit 8c7f7d3

Please sign in to comment.