Update Contributing with the new clientScopeSql function

This commit is contained in:
johnnyq
2026-08-06 11:55:39 -04:00
parent ddd9c2b56a
commit eb2cc3d653
2 changed files with 20 additions and 6 deletions

View File

@@ -62,8 +62,3 @@ while ($row = mysqli_fetch_assoc($user_client_access_result)) {
$client_access_array[] = (int) $row['client_id'];
}
}
// Client scoping for queries is built per-query by clientScopeSql() in functions/auth.php,
// which is column-aware. These strings remain for any caller that needs the raw lists.
$client_access_string = implode(',', $client_access_array);
$client_deny_string = implode(',', $client_deny_array);