summaryrefslogtreecommitdiff
path: root/garden/src/pages
AgeCommit message (Collapse)AuthorFilesLines
2026-03-13feat: add letters feature with detail view and listingHEADmainBobby2-0/+453
- Introduced new routes for letters and their details. - Created pages for displaying letter details and listing letters. - Added new types for letters, including participants, messages, and attachments. - Implemented API calls for fetching letters and managing messages (reply, edit, delete). - Enhanced stats to include unread letters and pending districts for staff users. - Updated styles for letters and their components. - Added privacy settings for letters (public and friends). - Modified user model to include letter privacy settings. - Improved error handling and user feedback in the UI.
2026-03-10feat(districts): add district management functionalityBobby4-0/+723
- Introduced new types and interfaces for districts, sites, and citizen summaries. - Implemented district image and icon utilities. - Created controllers for listing districts, submitting sites, and managing site requests. - Added enums for district slugs and site statuses. - Developed services for district site management, including submission, review, and editing. - Implemented thumbnail generation for district sites. - Established repository methods for district site CRUD operations. - Created router paths for district-related endpoints. - Added messages for error handling in district operations. - Enhanced models to support district site features. - Implemented pagination and search functionalities for district site listings.
2026-03-10feat: implement useClickOutside hook for improved click handling and ↵Bobby3-19/+22
refactor components
2026-03-10feat: enhance audit and user management with pagination and improved date ↵Bobby5-106/+31
formatting
2026-03-10feat: implement audit log functionality with filtering and detail viewsBobby5-19/+484
2026-03-10feat: add TypeScript support and improve type definitions across componentsBobby3-10/+10
2026-03-10feat: implement date and month-day pickers, enhance user warning logging, ↵Bobby3-33/+399
and add IP ban management - Added DatePicker and MonthDayPicker components for improved date selection in the UI. - Introduced MiniEditor component for rich text editing capabilities. - Enhanced warning logging in the warning service with detailed messages. - Removed unused RegistrationIP field from AdminUserResponse. - Improved error handling in various utility functions with descriptive messages. - Implemented IP ban management with models, repositories, and a new council page for viewing and lifting bans. - Added validation for jade amounts with a dedicated validator. - Created CSS styles for date pickers to ensure consistent UI presentation.
2026-03-07feat: add construction notice to Home pageBobby1-1/+1
2026-03-07feat: add modal component and styles, implement config APIBobby1-145/+396
- Created a new Modal component in Solid.js with backdrop handling. - Added modal styles for backdrop, content, header, and body. - Introduced editor styles for a rich text editor interface. - Implemented a new config controller and service in Go to fetch configuration settings. - Defined a ConfigResponse type for structured API responses. - Set up routing for the config endpoint in the Go application.
2026-03-07feat(council): implement user sorting functionality and enhance user list ↵Bobby1-4/+9
display
2026-03-06feat(council): add user management features including role changes, banning, ↵Bobby2-0/+355
and disabling users - Updated user roles to include 'Owner'. - Enhanced layout to show council options for Owners. - Implemented user listing and detail views for council members. - Added pagination and search functionality for user management. - Created API endpoints for banning, unbanning, disabling, and enabling users. - Introduced new request and response types for user actions. - Added styles for council user management interface.
2026-03-06feat: implement user statistics and heartbeat functionality with UI updatesBobby1-2/+1
2026-03-05feat: implement user authentication flow with login, registration, and email ↵Bobby4-0/+206
verification
2026-02-27feat(garden): initialize Solid.js project with basic structure and routingBobby1-0/+8
- Added package.json with dependencies for Solid.js and Vite. - Created main application component (App) with layout and suspense handling. - Implemented Layout component with navigation and sidebar sections. - Added NavSection and Sidebar components for structured navigation. - Configured API URL based on environment. - Created 404 error page for handling non-existent routes. - Set up global styles and theme variables for consistent design. - Established routing with lazy loading for the 404 page. - Added TypeScript configuration for Solid.js. - Configured Vite for development and production builds. - Created Makefile for building and running the Go application in the shrine directory. - Added .gitignore for ignoring build artifacts and environment files.