-
Notifications
You must be signed in to change notification settings - Fork 195
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
✅ Testing zendesk realtime webhook #497
Conversation
Qovery can create a Preview Environment for this PR.
This comment has been generated from Qovery AI 🤖.
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the 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? TipsChatThere are 3 ways to chat with CodeRabbit:
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 as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Summary
- Added support for real-time webhook triggers for accounts, contacts, tickets, and users
- Introduced optional parameters (
remote_account_id
,remote_ticket_id
,remote_user_id
) for more granular synchronization - Updated
docker-compose.dev.yml
to comment outngrok
service - Enhanced
handler.module.ts
to include additional modules - Simplified method signatures by removing unused parameters in various services
default: | ||
break; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing break
statement in the organization
case.
const existingUser = await this.prisma.tcg_users.findFirst({ | ||
where: { | ||
remote_id: remote_id, | ||
remote_platform: originSource, | ||
id_linked_user: linkedUserId, | ||
}, | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensure existingUser
is checked for null before accessing its properties.
️✅ There are no secrets present in this pull request anymore.If these secrets were true positive and are still valid, we highly recommend you to revoke them. 🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request. |
08e423e
to
3d5083e
Compare
3d5083e
to
a77bc47
Compare
); | ||
// Function to append type with correct pipe placement | ||
function appendType(baseType, newType) { | ||
const regex = new RegExp(`(export type ${baseType} =)([^;]*)`); |
Check failure
Code scanning / CodeQL
Regular expression injection High
No description provided.