mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	Don't use duplicate relations when eager-loading access list items and clients.
This fixes an Objection warning: 'Duplicate relation "proxy_hosts" in a relation expression. You should use "a.[b, c]" instead of "[a.b, a.c]". This will cause an error in objection 2.0'. It also fixes the access list clients not being properly eager-loaded when building the proxy host nginx configuration files. Closes #434
This commit is contained in:
		| @@ -73,7 +73,7 @@ const internalProxyHost = { | ||||
| 				// re-fetch with cert | ||||
| 				return internalProxyHost.get(access, { | ||||
| 					id:     row.id, | ||||
| 					expand: ['certificate', 'owner', 'access_list.clients', 'access_list.items'] | ||||
| 					expand: ['certificate', 'owner', 'access_list.[clients,items]'] | ||||
| 				}); | ||||
| 			}) | ||||
| 			.then((row) => { | ||||
| @@ -186,7 +186,7 @@ const internalProxyHost = { | ||||
| 			.then(() => { | ||||
| 				return internalProxyHost.get(access, { | ||||
| 					id:     data.id, | ||||
| 					expand: ['owner', 'certificate', 'access_list.clients', 'access_list.items'] | ||||
| 					expand: ['owner', 'certificate', 'access_list.[clients,items]'] | ||||
| 				}) | ||||
| 					.then((row) => { | ||||
| 						// Configure nginx | ||||
| @@ -219,7 +219,7 @@ const internalProxyHost = { | ||||
| 					.query() | ||||
| 					.where('is_deleted', 0) | ||||
| 					.andWhere('id', data.id) | ||||
| 					.allowEager('[owner,access_list,access_list.clients,access_list.items,certificate]') | ||||
| 					.allowEager('[owner,access_list,access_list.[clients,items],certificate]') | ||||
| 					.first(); | ||||
|  | ||||
| 				if (access_data.permission_visibility !== 'all') { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user