- Add admin dashboard at /admin route consolidating all user settings - Move user preferences (username, email, password, theme) from separate page - Add ebook library preferences section with folder management - Add scan settings (frequency and auto-scan toggle) with database persistence - Create database migration for scan_frequency_minutes and auto_scan_enabled columns - Add API endpoints for scan settings management: - PUT /api/library/scan-settings - Update scan preferences - GET /api/library/scan-settings - Get current scan settings - Update dashboard navigation to link to admin dashboard - Remove old preferences.html template (functionality moved to admin) - Create Bruno API testing files for library endpoints - Add real-time folder loading and management in admin interface - Implement scan settings persistence and retrieval from database
3 lines
176 B
SQL
3 lines
176 B
SQL
-- Add scan settings to users table
|
|
ALTER TABLE users ADD COLUMN scan_frequency_minutes INTEGER DEFAULT 60;
|
|
ALTER TABLE users ADD COLUMN auto_scan_enabled BOOLEAN DEFAULT true; |