You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
COALESCE(json_agg(json_build_object('profileName',wc.wireless_profile_name, 'priority', wc.priority)) FILTER (WHERE wc.wireless_profile_name IS NOT NULL), '[]') AS "wifiConfigs",
126
132
ip_sync_enabled as "ipSyncEnabled",
127
133
local_wifi_sync_enabled as "localWifiSyncEnabled",
128
-
COALESCE(json_agg(json_build_object('profileName',pc.proxy_profile_name, 'priority', pc.priority)) FILTER (WHERE pc.proxy_profile_name IS NOT NULL), '[]') AS "proxyConfigs"
134
+
COALESCE(json_agg(json_build_object('profileName',pc.proxy_config_name, 'priority', pc.priority)) FILTER (WHERE pc.proxy_config_name IS NOT NULL), '[]') AS "proxyConfigs"
129
135
FROM profiles p
130
136
LEFT JOIN profiles_wirelessconfigs wc ON wc.profile_name = p.profile_name AND wc.tenant_id = p.tenant_id
131
-
LEFT JOIN profiles_proxiesconfigs pc ON pc.profile_name = p.profile_name AND pc.tenant_id = p.tenant_id
137
+
LEFT JOIN profiles_proxyconfigs pc ON pc.profile_name = p.profile_name AND pc.tenant_id = p.tenant_id
COALESCE(json_agg(json_build_object('profileName',wc.wireless_profile_name, 'priority', wc.priority)) FILTER (WHERE wc.wireless_profile_name IS NOT NULL), '[]') AS "wifiConfigs",
186
192
ip_sync_enabled as "ipSyncEnabled",
187
193
local_wifi_sync_enabled as "localWifiSyncEnabled",
188
-
COALESCE(json_agg(json_build_object('profileName',pc.proxy_profile_name, 'priority', pc.priority)) FILTER (WHERE pc.proxy_profile_name IS NOT NULL), '[]') AS "proxyConfigs"
194
+
COALESCE(json_agg(json_build_object('profileName',pc.proxy_config_name, 'priority', pc.priority)) FILTER (WHERE pc.proxy_config_name IS NOT NULL), '[]') AS "proxyConfigs"
189
195
FROM profiles p
190
196
LEFT JOIN profiles_wirelessconfigs wc ON wc.profile_name = p.profile_name AND wc.tenant_id = p.tenant_id
191
-
LEFT JOIN profiles_proxiesconfigs pc ON pc.profile_name = p.profile_name AND pc.tenant_id = p.tenant_id
197
+
LEFT JOIN profiles_proxyconfigs pc ON pc.profile_name = p.profile_name AND pc.tenant_id = p.tenant_id
0 commit comments