Skip to content
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(transport-authority): sms and email error message #16160

Merged
merged 4 commits into from
Sep 26, 2024

Conversation

sigruntg
Copy link
Member

@sigruntg sigruntg commented Sep 26, 2024

Fixing error messages

Attach a link to issue if relevant

What

Using recipient role in error message

Why

Specify why you need to achieve this

Screenshots / Gifs

Attach Screenshots / Gifs to help reviewers understand the scope of the pull request

Checklist:

  • I have performed a self-review of my own code
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • Formatting passes locally with my changes
  • I have rebased against main before asking for a review

Summary by CodeRabbit

  • Bug Fixes
    • Simplified error messages for email and SMS notifications across various services, ensuring consistent references to roles.
    • Streamlined error logging by removing complex logic related to recipient identification, enhancing clarity and uniformity in error reporting.

@sigruntg sigruntg added the automerge Merge this PR as soon as all checks pass label Sep 26, 2024
@sigruntg sigruntg requested a review from a team as a code owner September 26, 2024 09:20
Copy link
Contributor

coderabbitai bot commented Sep 26, 2024

Walkthrough

The changes across multiple service files involve modifications to error logging messages related to email and SMS notifications. The updates simplify the error messages by removing detailed role identification based on the recipient's Social Security Number (SSN) and instead use a direct reference to the recipient's role. This results in a more concise and uniform error logging format across the affected services.

Changes

File Change Summary
libs/application/template-api-modules/src/lib/modules/templates/aosh/change-machine-supervisor/change-machine-supervisor.utils.ts Simplified error messages in sendNotificationsToRecipients by uniformly referring to the role directly from recipientList, removing SSN-based logic.
libs/application/template-api-modules/src/lib/modules/templates/aosh/transfer-of-machine-ownership/transfer-of-machine-ownership.service.ts Modified error logging statements to simplify role identification by using recipientList[i].role instead of detailed SSN-based logic.
libs/application/template-api-modules/src/lib/modules/templates/transport-authority/change-co-owner-of-vehicle/change-co-owner-of-vehicle.service.ts Simplified error logging messages for email and SMS notifications by replacing SSN-based role determination with a direct reference to recipientList[i].role.
libs/application/template-api-modules/src/lib/modules/templates/transport-authority/change-operator-of-vehicle/change-operator-of-vehicle.service.ts Updated error logging to streamline messages by using recipientList[i].role, removing SSN comparisons and index lookups.
libs/application/template-api-modules/src/lib/modules/templates/transport-authority/transfer-of-vehicle-ownership/transfer-of-vehicle-ownership.service.ts Changed error logging messages to provide a straightforward format by referencing recipientList[i].role, eliminating complex SSN-based role determination.

Possibly related PRs

Suggested reviewers

  • jonnigs
  • programm-ingovals
  • helgifr

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Outside diff range and nitpick comments (19)
libs/application/template-api-modules/src/lib/modules/templates/aosh/change-machine-supervisor/change-machine-supervisor.utils.ts (1)

77-78: Consider balancing simplification with informative error reporting

The changes to both email and SMS error messages aim to simplify the error reporting process by hardcoding the role as "supervisor". While this aligns with the PR objective of incorporating the recipient role into the messages, it does so at the cost of specificity.

To strike a balance between simplification and informative error reporting:

  1. Use a dynamic approach to include the specific role in error messages, as suggested in the previous comments.
  2. Consider adding a logging mechanism that captures more detailed information about the error context, such as the recipient's relationship to the application (applicant or assignee).
  3. Ensure that these changes are reflected in the project's error handling documentation, if such documentation exists.

These suggestions would maintain the simplicity of the error messages while preserving valuable debugging information, ultimately improving the maintainability of the codebase.

Also applies to: 99-99

libs/application/template-api-modules/src/lib/modules/templates/aosh/transfer-of-machine-ownership/transfer-of-machine-ownership.service.ts (7)

131-132: Approve changes with a minor suggestion for consistency.

The simplification of role determination in the error logging statement improves code readability and maintainability. This change aligns well with the PR objective of incorporating the recipient role into error messages.

For consistency with other error messages in the file, consider using template literals instead of string concatenation. Here's a suggested improvement:

-              `Error sending email about submit application in application: ID: ${application.id}, 
-            role: ${recipientList[i].role}`,
+              `Error sending email about submit application in application: ID: ${application.id}, role: ${recipientList[i].role}`,

This minor change would make the error message more consistent with other error messages in the file and slightly improve readability.


149-149: Approve changes with a minor suggestion for consistency.

The simplification of role determination in the error logging statement for SMS sending improves code readability and maintainability. This change aligns well with the PR objective of incorporating the recipient role into error messages.

For consistency with other error messages and to improve readability, consider using template literals and removing unnecessary line breaks. Here's a suggested improvement:

-              `Error sending sms about submit application to 
-              a phonenumber in application: ID: ${application.id}, 
-              role: ${recipientList[i].role}`,
+              `Error sending sms about submit application to a phonenumber in application: ID: ${application.id}, role: ${recipientList[i].role}`,

This minor change would make the error message more consistent with other error messages in the file and improve readability.


206-207: Approve changes with a minor suggestion for consistency.

The simplification of role determination in the error logging statement for email sending in the initReview method improves code readability and maintainability. This change aligns well with the PR objective of incorporating the recipient role into error messages.

For consistency with other error messages and to improve readability, consider using template literals and removing unnecessary line breaks. Here's a suggested improvement:

-              `Error sending email about initReview in application: ID: ${application.id}, 
-            role: ${recipientList[i].role}`,
+              `Error sending email about initReview in application: ID: ${application.id}, role: ${recipientList[i].role}`,

This minor change would make the error message more consistent with other error messages in the file and improve readability.


224-224: Approve changes with a minor suggestion for consistency.

The simplification of role determination in the error logging statement for SMS sending in the initReview method improves code readability and maintainability. This change aligns well with the PR objective of incorporating the recipient role into error messages.

For consistency with other error messages and to improve readability, consider using template literals and removing unnecessary line breaks. Here's a suggested improvement:

-              `Error sending sms about initReview to 
-              a phonenumber in application: ID: ${application.id}, 
-              role: ${recipientList[i].role}`,
+              `Error sending sms about initReview to a phonenumber in application: ID: ${application.id}, role: ${recipientList[i].role}`,

This minor change would make the error message more consistent with other error messages in the file and improve readability.


308-309: Approve changes with a minor suggestion for consistency.

The simplification of role determination in the error logging statement for email sending in the rejectApplication method improves code readability and maintainability. This change aligns well with the PR objective of incorporating the recipient role into error messages.

For consistency with other error messages and to improve readability, consider using template literals and removing unnecessary line breaks. Here's a suggested improvement:

-              `Error sending email about rejectApplication in application: ID: ${application.id}, 
-            role: ${recipientList[i].role}`,
+              `Error sending email about rejectApplication in application: ID: ${application.id}, role: ${recipientList[i].role}`,

This minor change would make the error message more consistent with other error messages in the file and improve readability.


330-330: Approve changes with a minor suggestion for consistency.

The simplification of role determination in the error logging statement for SMS sending in the rejectApplication method improves code readability and maintainability. This change aligns well with the PR objective of incorporating the recipient role into error messages.

For consistency with other error messages and to improve readability, consider using template literals and removing unnecessary line breaks. Here's a suggested improvement:

-              `Error sending sms about rejectApplication to 
-              a phonenumber in application: ID: ${application.id}, 
-              role: ${recipientList[i].role}`,
+              `Error sending sms about rejectApplication to a phonenumber in application: ID: ${application.id}, role: ${recipientList[i].role}`,

This minor change would make the error message more consistent with other error messages in the file and improve readability.


Line range hint 1-337: Overall assessment: Approved with minor suggestions for improvement

The changes in this file consistently simplify role determination in error messages, which aligns well with the PR objective of incorporating the recipient role into these messages. This simplification improves code readability and maintainability across multiple methods (submitApplication, initReview, and rejectApplication).

Key points:

  1. The changes are consistent with the coding guidelines for the libs directory.
  2. The simplification of role determination makes the code more maintainable.
  3. Error messages now clearly include the recipient's role, enhancing debugging capabilities.

Minor suggestions have been made to further improve consistency and readability by using template literals and removing unnecessary line breaks in the error messages.

Consider creating a helper function for logging these errors to further reduce code duplication and ensure consistency across all error logging statements. This could be implemented as follows:

private logErrorWithRole(method: string, errorType: 'email' | 'sms', applicationId: string, role: string, error: Error) {
  this.logger.error(
    `Error sending ${errorType} about ${method} in application: ID: ${applicationId}, role: ${role}`,
    error
  );
}

This helper function could then be used in all the error logging statements, further improving code maintainability and consistency.

libs/application/template-api-modules/src/lib/modules/templates/transport-authority/change-co-owner-of-vehicle/change-co-owner-of-vehicle.service.ts (3)

284-285: Improved error logging with recipient role.

The changes to the error logging messages in the initReview method are good. They now include the recipient's role, which aligns with the PR objective and improves clarity.

For consistency, consider using template literals for all error messages. For example:

this.logger.error(
  `Error sending email about initReview in application: ID: ${application.id}, role: ${recipientList[i].role}`,
  e
)

This format is more readable and consistent with modern JavaScript practices.

Also applies to: 301-302


344-345: Consistent error logging improvement in rejectApplication method.

The changes to the error logging messages in the rejectApplication method are good and consistent with the improvements made in the initReview method. They now include the recipient's role, which enhances the clarity of the error messages.

As suggested earlier, consider using template literals for all error messages for better readability and consistency:

this.logger.error(
  `Error sending email about rejectApplication in application: ID: ${application.id}, role: ${recipientList[i].role}`,
  e
)

Also applies to: 365-366


487-488: Consistent error logging improvement in submitApplication method.

The changes to the error logging messages in the submitApplication method are good and consistent with the improvements made in the other methods. They now include the recipient's role, which enhances the clarity of the error messages and aligns with the PR objective.

As suggested for the other methods, consider using template literals for all error messages:

this.logger.error(
  `Error sending email about submitApplication in application: ID: ${application.id}, role: ${recipientList[i].role}`
)

Note that in the email error logging (lines 487-488), the error object e is not passed to the logger.error method. Consider adding it back if it's needed for debugging:

this.logger.error(
  `Error sending email about submitApplication in application: ID: ${application.id}, role: ${recipientList[i].role}`,
  e
)

Also applies to: 503-504

libs/application/template-api-modules/src/lib/modules/templates/transport-authority/transfer-of-vehicle-ownership/transfer-of-vehicle-ownership.service.ts (8)

286-287: Improved error logging with recipient role

The addition of the recipient's role in the error message enhances the context provided during logging. This change aligns well with the PR objectives and improves debugging capabilities.

Consider using template literals for better readability:

- `Error sending email about initReview in application: ID: ${application.id}, 
-            role: ${recipientList[i].role}`,
+ `Error sending email about initReview in application: ID: ${application.id}, role: ${recipientList[i].role}`,

304-304: Improved SMS error logging with recipient role

The addition of the recipient's role in the SMS error message enhances the context provided during logging. This change aligns well with the PR objectives and improves debugging capabilities.

Consider the following improvements for consistency and readability:

  1. Use template literals for better readability.
  2. Make the formatting consistent with the email error message.
- `Error sending sms about initReview to 
-              a phonenumber in application: ID: ${application.id}, 
-              role: ${recipientList[i].role}`,
+ `Error sending sms about initReview in application: ID: ${application.id}, role: ${recipientList[i].role}`,

412-413: Improved email error logging in addReview method

The addition of the recipient's role in the error message enhances the context provided during logging. This change aligns well with the PR objectives and improves debugging capabilities.

For consistency with previous suggestions and improved readability, consider using template literals and adjusting the formatting:

- `Error sending email about addReview in application: ID: ${application.id}, 
-            role: ${newlyAddedRecipientList[i].role}`,
+ `Error sending email about addReview in application: ID: ${application.id}, role: ${newlyAddedRecipientList[i].role}`,

433-433: Improved SMS error logging in addReview method

The addition of the recipient's role in the SMS error message enhances the context provided during logging. This change aligns well with the PR objectives and improves debugging capabilities.

For consistency with previous suggestions and improved readability, consider using template literals and adjusting the formatting:

- `Error sending sms about addReview to 
-              a phonenumber in application: ID: ${application.id}, 
-              role: ${newlyAddedRecipientList[i].role}`,
+ `Error sending sms about addReview in application: ID: ${application.id}, role: ${newlyAddedRecipientList[i].role}`,

473-474: Improved email error logging in rejectApplication method

The addition of the recipient's role in the error message enhances the context provided during logging. This change aligns well with the PR objectives and improves debugging capabilities.

For consistency with previous suggestions and improved readability, consider using template literals and adjusting the formatting:

- `Error sending email about rejectApplication in application: ID: ${application.id}, 
-            role: ${recipientList[i].role}`,
+ `Error sending email about rejectApplication in application: ID: ${application.id}, role: ${recipientList[i].role}`,

495-495: Improved SMS error logging in rejectApplication method

The addition of the recipient's role in the SMS error message enhances the context provided during logging. This change aligns well with the PR objectives and improves debugging capabilities.

For consistency with previous suggestions and improved readability, consider using template literals and adjusting the formatting:

- `Error sending sms about rejectApplication to 
-              a phonenumber in application: ID: ${application.id}, 
-              role: ${recipientList[i].role}`,
+ `Error sending sms about rejectApplication in application: ID: ${application.id}, role: ${recipientList[i].role}`,

602-603: Improved email error logging in submitApplication method

The addition of the recipient's role in the error message enhances the context provided during logging. This change aligns well with the PR objectives and improves debugging capabilities.

For consistency with previous suggestions and improved readability, consider using template literals and adjusting the formatting:

- `Error sending email about submitApplication in application: ID: ${application.id}, 
-            role: ${recipientList[i].role}`,
+ `Error sending email about submitApplication in application: ID: ${application.id}, role: ${recipientList[i].role}`,

Line range hint 1-624: Overall assessment of changes

The changes in this file consistently improve error logging by incorporating recipient roles into error messages for both email and SMS notifications. This enhancement aligns well with the PR objectives and significantly improves the context provided during error logging, which will aid in debugging and maintenance.

Consider the following suggestions for further improvement:

  1. Implement a centralized error logging function that handles the formatting consistently across all error messages. This would reduce code duplication and ensure consistency in error message format.

  2. Consider using an enum for recipient roles to ensure type safety and consistency throughout the codebase.

  3. Evaluate the possibility of implementing structured logging, which would make it easier to parse and analyze logs in production environments.

These suggestions aim to further enhance the maintainability and consistency of the codebase.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 651f337 and a21bd85.

📒 Files selected for processing (5)
  • libs/application/template-api-modules/src/lib/modules/templates/aosh/change-machine-supervisor/change-machine-supervisor.utils.ts (2 hunks)
  • libs/application/template-api-modules/src/lib/modules/templates/aosh/transfer-of-machine-ownership/transfer-of-machine-ownership.service.ts (6 hunks)
  • libs/application/template-api-modules/src/lib/modules/templates/transport-authority/change-co-owner-of-vehicle/change-co-owner-of-vehicle.service.ts (6 hunks)
  • libs/application/template-api-modules/src/lib/modules/templates/transport-authority/change-operator-of-vehicle/change-operator-of-vehicle.service.ts (6 hunks)
  • libs/application/template-api-modules/src/lib/modules/templates/transport-authority/transfer-of-vehicle-ownership/transfer-of-vehicle-ownership.service.ts (8 hunks)
🧰 Additional context used
📓 Path-based instructions (5)
libs/application/template-api-modules/src/lib/modules/templates/aosh/change-machine-supervisor/change-machine-supervisor.utils.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/template-api-modules/src/lib/modules/templates/aosh/transfer-of-machine-ownership/transfer-of-machine-ownership.service.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/template-api-modules/src/lib/modules/templates/transport-authority/change-co-owner-of-vehicle/change-co-owner-of-vehicle.service.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/template-api-modules/src/lib/modules/templates/transport-authority/change-operator-of-vehicle/change-operator-of-vehicle.service.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/template-api-modules/src/lib/modules/templates/transport-authority/transfer-of-vehicle-ownership/transfer-of-vehicle-ownership.service.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
🔇 Additional comments (6)
libs/application/template-api-modules/src/lib/modules/templates/transport-authority/change-operator-of-vehicle/change-operator-of-vehicle.service.ts (5)

256-257: Improved error logging for email sending in initReview method

The changes to the error logging message enhance clarity by directly incorporating the recipient's role. This modification aligns well with the PR objective of improving error messages related to SMS and email functionalities.


274-274: Consistent improvement in SMS error logging for initReview method

The modification to the SMS error logging message mirrors the changes made to the email error logging. This ensures consistency in error reporting and aligns with the PR's goal of enhancing error messages for both email and SMS functionalities.


316-317: Consistent error logging improvement in rejectApplication method

The changes to the email error logging in the rejectApplication method are consistent with the improvements made in the initReview method. This consistency enhances the overall error reporting structure of the service.


338-338: Comprehensive improvement in error logging across the service

This final change to the SMS error logging in the rejectApplication method completes the consistent implementation of simplified and clear error messages across all email and SMS notifications in the service. These improvements align perfectly with the PR's objective of enhancing error messages by incorporating recipient roles.


Line range hint 256-457: Overall improvement in error logging and alignment with PR objectives

The changes made to this service consistently improve error logging for both email and SMS notifications across different methods. By directly incorporating the recipient's role into error messages, the code now provides clearer and more informative error logs. These modifications align perfectly with the PR's objective of enhancing error messages related to SMS and email functionalities.

The consistent implementation across different methods (initReview, rejectApplication) and notification types (email, SMS) demonstrates a thorough approach to improving the service. These changes will likely lead to easier debugging and better understanding of issues when they occur.

libs/application/template-api-modules/src/lib/modules/templates/transport-authority/change-co-owner-of-vehicle/change-co-owner-of-vehicle.service.ts (1)

Line range hint 1-510: Overall improvement in error logging across the service.

The changes made to the ChangeCoOwnerOfVehicleService class consistently improve the error logging messages across the initReview, rejectApplication, and submitApplication methods. These improvements align well with the PR objective of incorporating the recipient role into error messages.

Key points:

  1. Error messages now include the recipient's role, enhancing clarity and context.
  2. The changes are consistent across all modified methods.
  3. The modifications are minimal and focused, reducing the risk of introducing new issues.

The code continues to adhere to the coding guidelines for reusability and TypeScript usage. These changes will make debugging and troubleshooting easier by providing more specific information in the error logs.

To further enhance the code:

  1. Consider using template literals consistently for all error messages.
  2. Ensure that error objects are consistently passed to the logger when available.

Copy link

codecov bot commented Sep 26, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 36.69%. Comparing base (d574949) to head (3eee19d).
Report is 1 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main   #16160      +/-   ##
==========================================
+ Coverage   36.67%   36.69%   +0.02%     
==========================================
  Files        6776     6776              
  Lines      139662   139578      -84     
  Branches    39734    39678      -56     
==========================================
  Hits        51222    51222              
+ Misses      88440    88356      -84     
Flag Coverage Δ
api 3.39% <ø> (ø)
application-system-api 41.64% <ø> (+0.08%) ⬆️
application-template-api-modules 23.70% <ø> (+0.08%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
...hine-supervisor/change-machine-supervisor.utils.ts 19.44% <ø> (+2.77%) ⬆️
...ownership/transfer-of-machine-ownership.service.ts 19.20% <ø> (+2.41%) ⬆️
...r-of-vehicle/change-co-owner-of-vehicle.service.ts 17.03% <ø> (+1.53%) ⬆️
...r-of-vehicle/change-operator-of-vehicle.service.ts 19.01% <ø> (+1.89%) ⬆️
...ownership/transfer-of-vehicle-ownership.service.ts 11.64% <ø> (+1.02%) ⬆️

Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update d574949...3eee19d. Read the comment docs.

@datadog-island-is
Copy link

Datadog Report

All test runs 9f600da 🔗

3 Total Test Services: 0 Failed, 3 Passed
➡️ Test Sessions change in coverage: 4 no change

Test Services
Service Name Failed Known Flaky New Flaky Passed Skipped Total Time Code Coverage Change Test Service View
api 0 0 0 4 0 2.68s 1 no change Link
application-system-api 0 0 0 111 2 3m 5.35s 1 no change Link
application-template-api-modules 0 0 0 109 0 1m 46.6s 1 no change Link

@kodiakhq kodiakhq bot merged commit 5828cef into main Sep 26, 2024
35 checks passed
@kodiakhq kodiakhq bot deleted the fix/sms-and-email-error-message branch September 26, 2024 10:13
thoreyjona pushed a commit that referenced this pull request Oct 2, 2024
* fixing error messages

* adding role

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Merge this PR as soon as all checks pass
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants