mirror of
https://github.com/itflow-org/itflow
synced 2026-08-16 04:25:13 +00:00
Fix some broken API calls after RBAC update
This commit is contained in:
@@ -5,15 +5,15 @@ require_once '../validate_api_key.php';
|
||||
require_once '../require_get_method.php';
|
||||
|
||||
|
||||
// Expenses aren't stored against client IDs, so we instead validate the API key is for All Clients
|
||||
// Expenses aren't client-scoped; access is gated by module_financial in enforce_api_rbac.php
|
||||
|
||||
if (isset($_GET['expense_id']) && $client_id == "%") {
|
||||
if (isset($_GET['expense_id'])) {
|
||||
// Expense via ID (single)
|
||||
|
||||
$id = intval($_GET['expense_id']);
|
||||
$sql = mysqli_query($mysqli, "SELECT * FROM expenses WHERE expense_id = '$id'");
|
||||
|
||||
} elseif ($client_id == "%") {
|
||||
} else {
|
||||
// All expenses
|
||||
|
||||
$sql = mysqli_query($mysqli, "SELECT * FROM expenses ORDER BY expense_id LIMIT $limit OFFSET $offset");
|
||||
|
||||
Reference in New Issue
Block a user