summaryrefslogtreecommitdiff
path: root/frontend/app/history
Commit message (Collapse)AuthorAgeFilesLines
* fix: update searchParams interface for Next.js 15 compatibilitydiogo4642025-08-141-2/+3
| | | | | | | | | | - Change searchParams from object to Promise<object> in HistoryPageProps - Await searchParams resolution in HistoryPage component - Fixes TypeScript compilation error during build process 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
* feat: add paginated history page with activity logdiogo4642025-08-141-0/+35
- Create /history page showing drive activity with server-side rendering - Display timestamp, action, user, path, and file size in table format - Add pagination (50 entries per page) using URL query parameters - Sort entries by timestamp descending (most recent first) - Add History button to drive header for easy navigation - Use existing UI components and styling patterns 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>