53 Commits

Author SHA1 Message Date
82b7d060ba Merge remote-tracking branch 'refs/remotes/origin/main'
All checks were successful
Build & Push Docker Image / build (push) Successful in 4m34s
2026-03-16 13:32:45 +01:00
0836436fe7 feat: Implement Two-Factor Authentication (2FA) for enhanced user account security. 2026-03-16 13:28:43 +01:00
cae84754e4 feat: add analytics visibility settings and export functionality
All checks were successful
Build & Push Docker Image / build (push) Successful in 5m11s
- Added `analytics_visibility` column to `rooms` table to control who can view analytics data.
- Updated analytics routes to check visibility settings before allowing access and export of analytics data.
- Implemented export functionality for analytics in CSV, XLSX, and PDF formats.
- Enhanced `AnalyticsList` component to include export options for analytics entries.
- Updated room detail page to allow setting analytics visibility when creating or editing rooms.
- Added translations for new analytics visibility options and export messages.
2026-03-13 22:36:07 +01:00
00e563664e feat(analytics): enhance analytics functionality with token validation and data extraction
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m29s
2026-03-13 10:34:39 +01:00
7ef173c49e feat(analytics): implement learning analytics feature with data collection and display
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m33s
2026-03-13 09:46:15 +01:00
a7b0b84f2d feat(database): modify PostgreSQL insert query to return the entire inserted row for tables without an "id" column
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m35s
2026-03-10 15:14:03 +01:00
d8c52aae4e feat(database): make token column nullable in caldav_tokens table for improved flexibility
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m36s
2026-03-04 22:24:11 +01:00
a69b2e4d9a feat(database): update reminder_sent_at column type for calendar_events based on database type
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m59s
2026-03-04 10:33:55 +01:00
8823f8789e feat(calendar): add reminder functionality for events with notifications
Some checks failed
Build & Push Docker Image / build (push) Has been cancelled
2026-03-04 10:18:43 +01:00
2d919cdc67 feat(caldav): add token_hash column and store SHA-256 hashed tokens
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m27s
2026-03-04 09:17:31 +01:00
cdfc585c8a feat: implement OAuth 2.0 / OpenID Connect support
Some checks failed
Build & Push Docker Image / build (push) Failing after 1m12s
- Added OAuth configuration management in the admin panel.
- Implemented OAuth authorization flow with PKCE for enhanced security.
- Created routes for handling OAuth provider discovery, authorization, and callback.
- Integrated OAuth login and registration options in the frontend.
- Updated UI components to support OAuth login and registration.
- Added internationalization strings for OAuth-related messages.
- Implemented encryption for client secrets and secure state management.
- Added error handling and user feedback for OAuth processes.
2026-03-04 08:54:25 +01:00
e22a895672 feat(security): enhance input validation and security measures across various routes
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m38s
2026-03-04 08:39:29 +01:00
ddc0c684ec feat(caldav): implement CalDAV support with token management and calendar operations
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m5s
2026-03-03 11:41:35 +01:00
4bb22be496 feat(room): enforce minimum room name length of 2 characters in creation and editing
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m17s
2026-03-03 10:02:28 +01:00
e4001cb33f feat(federation): update key path handling and ensure directory creation for federation keys
Some checks failed
Build & Push Docker Image / build (push) Has been cancelled
2026-03-02 23:01:15 +01:00
4a4ec0a3a3 feat(i18n): add German and English email templates for invitations and verifications
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m29s
2026-03-02 18:55:38 +01:00
c13090bc80 feat(notifications): implement notification system with CRUD operations and UI integration
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m27s
2026-03-02 16:45:53 +01:00
b5218046c9 Refactor code and improve internationalization support
Some checks failed
Build & Push Docker Image / build (push) Has been cancelled
- Updated import statements to remove invisible characters.
- Standardized comments to use a consistent hyphen format.
- Adjusted username validation error messages for consistency.
- Enhanced email sending functions to include language support.
- Added email internationalization configuration for dynamic translations.
- Updated calendar and federation routes to include language in user queries.
- Improved user feedback messages in German and English for clarity.
2026-03-02 16:14:54 +01:00
c2c10f9a4b feat(calendar): implement local calendar invitations with email notifications
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m19s
- Added functionality to create, accept, decline, and delete local calendar invitations.
- Integrated email notifications for calendar event invitations and deletions.
- Updated database schema to support local invitations and outbound event tracking.
- Enhanced the calendar UI to display pending invitations and allow users to manage them.
- Localized new strings for invitations in English and German.
2026-03-02 14:37:54 +01:00
d989e1291d feat: implement calendar invitation system with creation, acceptance, and management features
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m26s
2026-03-02 13:57:56 +01:00
13c60ba052 feat: add calendar component with event management features including create, edit, delete, and share functionalities
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m25s
2026-03-02 10:35:01 +01:00
bfec8de195 fix(database): modify admin seeded setting insertion to return key
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m27s
2026-03-01 13:20:27 +01:00
25b13b4078 fix(database): prevent duplicate admin creation during database initialization
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m17s
2026-03-01 13:09:22 +01:00
df4666bb63 feat(invite-system): implement user invite functionality with registration mode control
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m24s
Build & Push Docker Image / build (release) Successful in 6m25s
2026-03-01 12:53:45 +01:00
8c39275615 fix(database): update user creation query to include display_name field
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m21s
2026-03-01 12:32:25 +01:00
57bb1fb696 feat(logging): implement centralized logging system and replace console errors with structured logs
Some checks failed
Build & Push Docker Image / build (push) Has been cancelled
Build & Push Docker Image / build (release) Successful in 7m27s
feat(federation): add room sync and deletion notification endpoints for federated instances

fix(federation): handle room deletion and update settings during sync process

feat(federation): enhance FederatedRoomCard and FederatedRoomDetail components to display deleted rooms

i18n: add translations for room deletion messages in English and German
2026-03-01 12:20:14 +01:00
89b2a853d3 Bump version to 1.2.0 in package.json, package-lock.json, and federation.js
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m20s
Build & Push Docker Image / build (release) Successful in 6m23s
2026-02-28 23:15:13 +01:00
ed8fb134ad Enhance logging in API calls and request/response middleware with sensitive data filtering and compact format
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m28s
2026-02-28 21:24:25 +01:00
c281628fdc Update README and configuration to replace RSA with Ed25519 for federation security
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m30s
2026-02-28 20:19:59 +01:00
7466f3513d Enhance security and validation across multiple routes:
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m25s
- Escape XML and HTML special characters to prevent injection attacks.
- Implement rate limiting for various endpoints to mitigate abuse.
- Add validation for email formats, password lengths, and field limits.
- Ensure proper access control for recordings and room management.
2026-02-28 19:49:29 +01:00
5cb8201fb5 Update Redis configuration to allow unlimited retries and disable offline queue
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m5s
2026-02-28 14:17:01 +01:00
3556aaede7 Add DragonflyDB integration for JWT revocation and implement rate limiting for authentication routes
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m14s
2026-02-28 13:37:27 +01:00
ed97587248 Add federated room detail page and improve address parsing in invites
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m18s
2026-02-27 17:42:37 +01:00
9814150ba8 Add verification resend timestamp and cooldown handling for email verification
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m13s
2026-02-27 17:23:22 +01:00
4d0756d864 keep original presentation name
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m0s
2026-02-27 16:51:17 +01:00
a7af7d0e6f Add presentation upload and management features to room functionality
Some checks failed
Build & Push Docker Image / build (push) Failing after 1m11s
2026-02-27 16:37:57 +01:00
9be9938f02 Add display name support for user management and update related components
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m2s
2026-02-27 16:29:23 +01:00
d781022b63 add timeouts
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m8s
2026-02-27 16:12:41 +01:00
d7d7991ff0 more details with federation
Some checks failed
Build & Push Docker Image / build (push) Has been cancelled
2026-02-27 15:51:46 +01:00
e5b6c225e9 New federation features
All checks were successful
Build & Push Docker Image / build (push) Successful in 5m58s
2026-02-27 15:24:18 +01:00
c5a6a15731 feat: implement federation for inter-instance meeting invitations with dedicated API, UI, and configuration. 2026-02-27 12:53:20 +01:00
32cc4d724b Add defaultWelcome lang string
All checks were successful
Build & Push Docker Image / build (push) Successful in 1m19s
2026-02-26 09:53:29 +01:00
1e19aa24dd Use create call instead of join call with loginURL
All checks were successful
Build & Push Docker Image / build (push) Successful in 1m10s
2026-02-26 09:20:41 +01:00
a6e400b6b7 joinUrl -> loginURL
All checks were successful
Build & Push Docker Image / build (push) Successful in 1m9s
2026-02-26 08:50:47 +01:00
52a2e2260c Use joinUrl parameter
All checks were successful
Build & Push Docker Image / build (push) Successful in 1m11s
2026-02-26 08:44:40 +01:00
7426ae8088 Update language, add LICENSE and README
All checks were successful
Build & Push Docker Image / build (push) Successful in 1m9s
2026-02-24 21:04:19 +01:00
8be973a166 Add mail verification and use .env insteads of environment in compose
Some checks failed
Build & Push Docker Image / build (push) Has been cancelled
2026-02-24 20:35:08 +01:00
cd98ee4cc7 add branding option
All checks were successful
Build & Push Docker Image / build (push) Successful in 1m10s
2026-02-24 19:43:59 +01:00
d8dcb6e628 Add sharing rooms
All checks were successful
Build & Push Docker Image / build (push) Successful in 1m8s
2026-02-24 19:32:57 +01:00
a150bd1447 Add guest link to welcome message
All checks were successful
Build & Push Docker Image / build (push) Successful in 1m7s
2026-02-24 19:19:19 +01:00