We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 981d5a1 commit ad41cc9Copy full SHA for ad41cc9
src/backend/internal/proxy-host.js
@@ -301,7 +301,10 @@ const internalProxyHost = {
301
enable: (access, data) => {
302
return access.can('proxy_hosts:update', data.id)
303
.then(() => {
304
- return internalProxyHost.get(access, {id: data.id});
+ return internalProxyHost.get(access, {
305
+ id: data.id,
306
+ expand: ['certificate', 'owner', 'access_list']
307
+ });
308
})
309
.then(row => {
310
if (!row) {
0 commit comments