Fix reconfigure not respecting expansions
This commit is contained in:
parent
981d5a199f
commit
ad41cc985d
1 changed files with 4 additions and 1 deletions
|
@ -301,7 +301,10 @@ const internalProxyHost = {
|
|||
enable: (access, data) => {
|
||||
return access.can('proxy_hosts:update', data.id)
|
||||
.then(() => {
|
||||
return internalProxyHost.get(access, {id: data.id});
|
||||
return internalProxyHost.get(access, {
|
||||
id: data.id,
|
||||
expand: ['certificate', 'owner', 'access_list']
|
||||
});
|
||||
})
|
||||
.then(row => {
|
||||
if (!row) {
|
||||
|
|
Loading…
Reference in a new issue