Skip to content

Commit 6a0b0e4

Browse files
committed
feat: userFeedback new trigger added
1 parent c3b98ae commit 6a0b0e4

File tree

4 files changed

+3
-1
lines changed

4 files changed

+3
-1
lines changed

frontend-dev/src/Utils/StaticData/webhookIntegrations.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export const customFormIntegrations = [
6565
'NexForms',
6666
'ProfileBuilder',
6767
'QuillForms',
68+
'UserFeedback',
6869
]
6970

7071
export const actionHookIntegrations = ['ActionHook']

frontend-dev/src/components/Triggers/ActionHook.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ const ActionHook = () => {
252252
</div>
253253
<input
254254
className="btcd-paper-inp w-100 mt-1"
255-
onChange={e => setHook(e.target.value, 'custom')}
255+
onChange={e => setHook(e.target.value?.trim(), 'custom')}
256256
name="custom"
257257
value={hookID}
258258
type="text"
32.3 KB
Loading

includes/Core/Util/AllTriggersName.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ public static function allTriggersName()
117117
'Tripetto' => ['name' => 'Tripetto', 'isPro' => true, 'is_active' => false],
118118
'TutorLms' => ['name' => 'Tutor LMS', 'isPro' => true, 'is_active' => false],
119119
'UltimateMember' => ['name' => 'UltimateMember', 'isPro' => true, 'is_active' => false],
120+
'UserFeedback' => ['name' => 'UserFeedback', 'isPro' => true, 'is_active' => false],
120121
'Voxel' => ['name' => 'Voxel', 'isPro' => true, 'is_active' => false],
121122
'WCBookings' => ['name' => 'WooCommerce Bookings', 'isPro' => true, 'is_active' => false],
122123
'WCMemberships' => ['name' => 'WooCommerce Memberships', 'isPro' => true, 'is_active' => false],

0 commit comments

Comments
 (0)