File size: 873 Bytes
79d0523
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export default function handler(req, res) {
  const data = {
    todo: [
      { id: 101, title: "Design System Audit", tag: "Design", priority: "High", assignee: "ER" },
      { id: 102, title: "API Rate Limiting", tag: "Backend", priority: "Medium", assignee: "SC" },
      { id: 103, title: "Update User Onboarding", tag: "Product", priority: "Low", assignee: "MM" },
    ],
    inProgress: [
      { id: 201, title: "Dashboard Analytics Integration", tag: "Frontend", priority: "Critical", assignee: "JW" },
      { id: 202, title: "Dark Mode Palette Fix", tag: "Design", priority: "High", assignee: "ER" },
    ],
    done: [
      { id: 301, title: "Q3 Financial Report", tag: "Finance", priority: "High", assignee: "MM" },
      { id: 302, title: "Database Migration", tag: "DevOps", priority: "Critical", assignee: "SC" },
    ]
  };
  res.status(200).json(data);
}