<?php
// ajax/last_team_actions.ajax.php
// Returns JSON array of { team, type, date_time, jobcard_id }
include $_SERVER['DOCUMENT_ROOT'] . "/root.class.php";
include $_SERVER['DOCUMENT_ROOT'] . "/app/test/classes/dashboard.class.php";

header('Content-Type: application/json');

$db   = new db_safeguard();
$dash = new DashboardData($db);

echo json_encode($dash->lastTeamActions());