-
Notifications
You must be signed in to change notification settings - Fork 47
Fix identity api url #246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix identity api url #246
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughThis update introduces Firebase Cloud Messaging integration, dynamic form management, and beneficiary consent OTP workflows. It adds new REST controllers, DTOs, entities, repositories, and services for Firebase notifications, OTP handling, and dynamic forms. Multiple configuration files and the Maven build are updated to support these features and their dependencies. Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant BeneficiaryConsentController
participant BeneficiaryOTPHandler
participant SMSGateway
Client->>BeneficiaryConsentController: POST /sendConsent (mobNo)
BeneficiaryConsentController->>BeneficiaryOTPHandler: sendOTP(request)
BeneficiaryOTPHandler->>SMSGateway: sendSMS(otp, mobNo)
SMSGateway-->>BeneficiaryOTPHandler: SMS sent response
BeneficiaryOTPHandler-->>BeneficiaryConsentController: OTP sent status
BeneficiaryConsentController-->>Client: Response
Client->>BeneficiaryConsentController: POST /validateConsent (mobNo, otp)
BeneficiaryConsentController->>BeneficiaryOTPHandler: validateOTP(request)
BeneficiaryOTPHandler-->>BeneficiaryConsentController: Validation result
BeneficiaryConsentController-->>Client: Response
sequenceDiagram
participant Client
participant FirebaseNotificationController
participant FirebaseNotificationService
participant FirebaseMessaging
Client->>FirebaseNotificationController: POST /sendNotification (NotificationMessage)
FirebaseNotificationController->>FirebaseNotificationService: sendNotification(notification)
FirebaseNotificationService->>FirebaseMessaging: send(message)
FirebaseMessaging-->>FirebaseNotificationService: send result
FirebaseNotificationService-->>FirebaseNotificationController: Response
FirebaseNotificationController-->>Client: Response
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
π Recent review detailsConfiguration used: CodeRabbit UI π Files selected for processing (35)
β¨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. πͺ§ TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
| # DB Connections | ||
| spring.datasource.url=jdbc:mysql://devbox.bizbrolly.com:3306/db_iemr | ||
| spring.datasource.username=root | ||
| spring.datasource.password=BizDev@24BB |
Check failure
Code scanning / SonarCloud
Credentials should not be hard-coded High
| # DB Connections | ||
| spring.datasource.url=jdbc:mysql://devbox.bizbrolly.com:3306/db_iemr | ||
| spring.datasource.username=root | ||
| spring.datasource.password=BizDev@24BB |
Check failure
Code scanning / SonarCloud
Database passwords should not be disclosed High
|
|
||
| secondary.datasource.url=jdbc:mysql://devbox.bizbrolly.com:3306/db_reporting | ||
| secondary.datasource.username=root | ||
| secondary.datasource.password=BizDev@24BB |
Check failure
Code scanning / SonarCloud
Database passwords should not be disclosed High
| spring.mail.host=smtp.gmail.com | ||
| spring.mail.port=587 | ||
| spring.mail.username=<Enter mail username> | ||
| spring.mail.password=<Enter mail password> |
Check failure
Code scanning / SonarCloud
Credentials should not be hard-coded High




π Description
Fix identity api url
β Type of Change
Summary by CodeRabbit
New Features
Enhancements
Bug Fixes
Chores