Skip to content

Commit ad41cc9

Browse files
committed
Fix reconfigure not respecting expansions
1 parent 981d5a1 commit ad41cc9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/backend/internal/proxy-host.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,10 @@ const internalProxyHost = {
301301
enable: (access, data) => {
302302
return access.can('proxy_hosts:update', data.id)
303303
.then(() => {
304-
return internalProxyHost.get(access, {id: data.id});
304+
return internalProxyHost.get(access, {
305+
id: data.id,
306+
expand: ['certificate', 'owner', 'access_list']
307+
});
305308
})
306309
.then(row => {
307310
if (!row) {

0 commit comments

Comments
 (0)