feat: enterprise SSO/SAML integration & calendar two-way sync (#553, #551)#693
Merged
Smartdevs17 merged 1 commit intoJun 27, 2026
Conversation
Issue Smartdevs17#553 — Enterprise SSO/SAML integration: - SAML 2.0 SSO with IdP-initiated and SP-initiated flows - OpenID Connect enterprise provider support - Just-In-Time (JIT) provisioning on first SSO login - SCIM 2.0 user provisioning (create, update, deactivate, group membership) - IdP metadata upload (XML) and URL configuration - Role mapping from IdP groups to SubTrackr roles (admin, viewer, billing) - Certificate rotation with graceful expiry handling - IP allowlist bypass codes for IdP unavailability - SSO settings screen with provider management UI Issue Smartdevs17#551 — Calendar two-way sync: - Google Calendar and Outlook Calendar API integration - iCal/ICS export for manual import - Event types: payment due, payment received, trial ending, renewal, contract end - Real-time sync via webhook with hourly poll fallback - User controls for sync direction and event type selection - Two-way sync: calendar changes reflected back in SubTrackr - Rate limiting and conflict resolution for concurrent edits - SyncWorker with configurable poll intervals Closes Smartdevs17#553, Closes Smartdevs17#551 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
@olathedev Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Issue Build enterprise SSO/SAML integration with automatic provisioning #553 — Enterprise SSO/SAML Integration with Automatic Provisioning
Issue Add calendar integration with two-way sync for billing events #551 — Calendar Integration with Two-Way Sync for Billing Events
New Files
backend/sso/— SSO domain module (SSOService, SCIMService, controller, types, tests)backend/calendar/— Calendar sync domain module (CalendarSyncService, SyncWorker, controller, types, tests)src/types/sso.ts— Frontend SSO typessrc/store/ssoStore.ts— SSO Zustand storesrc/screens/SSOSettingsScreen.tsx— SSO settings screenModified Files
src/types/calendar.ts— Added two-way sync types (SyncDirection, CalendarEventType, CalendarSyncSettings)src/store/calendarStore.ts— Added sync direction, event type toggle, bidirectional sync methodssrc/screens/CalendarIntegrationScreen.tsx— Added two-way sync settings UI sectionTest plan
backend/sso/__tests__/SSOService.test.tsbackend/sso/__tests__/SCIMService.test.tsbackend/calendar/__tests__/CalendarSyncService.test.tsCloses #553
Closes #551
🤖 Generated with Claude Code