- Reorganize into apps/, packages/, docs/, e2e/, pocketbase/ directories - Add Dockerfiles for web, worker, and PocketBase services - Add docker-compose.yml for local orchestration - Add turbo.json for monorepo task management - Add Playwright e2e test infrastructure - Add PocketBase backend with migrations - Remove Vite/Next.js/ESLint/PostCSS config files - Update package.json with workspace dependencies - Add .env.example and .dockerignore
25 lines
810 B
TypeScript
25 lines
810 B
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import { withAuth } from '@/lib/auth';
|
|
import { createPocketBaseClient } from '@/lib/pocketbase';
|
|
|
|
// GET /api/agent-tasks — List agent tasks
|
|
export const GET = withAuth(async (request: NextRequest) => {
|
|
const { searchParams } = new URL(request.url);
|
|
const page = parseInt(searchParams.get('page') || '1');
|
|
const perPage = parseInt(searchParams.get('perPage') || '50');
|
|
const sort = searchParams.get('sort') || '-created';
|
|
|
|
const pb = createPocketBaseClient();
|
|
const result = await pb.collection('agent_tasks').getList(page, perPage, {
|
|
sort,
|
|
});
|
|
|
|
return NextResponse.json({
|
|
items: result.items,
|
|
totalItems: result.totalItems,
|
|
totalPages: result.totalPages,
|
|
page: result.page,
|
|
perPage: result.perPage,
|
|
});
|
|
});
|