deepstudio / pages /api /tasks.js
00Boobs00's picture
Upload pages/api/tasks.js with huggingface_hub
79d0523 verified
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);
}