File tree 2 files changed +17
-17
lines changed
botonic-plugin-flow-builder/src/content-fields
2 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -267,11 +267,11 @@ async function _humanHandOff(
267
267
if ( subscribeHelpdeskEvents . length > 0 ) {
268
268
params . subscribe_helpdesk_events = subscribeHelpdeskEvents
269
269
}
270
- if ( ! session . is_test_integration ) {
271
- session . _botonic_action = `${ BotonicAction . CreateCase } :${ JSON . stringify ( params ) } `
272
- } else {
273
- session . _botonic_action = `${ BotonicAction . CreateTestCase } :${ params . on_finish || '' } `
274
- }
270
+ // if (!session.is_test_integration) {
271
+ session . _botonic_action = `${ BotonicAction . CreateCase } :${ JSON . stringify ( params ) } `
272
+ // } else {
273
+ // session._botonic_action = `${BotonicAction.CreateTestCase}:${params.on_finish || ''}`
274
+ // }
275
275
}
276
276
277
277
export async function storeCaseRating (
Original file line number Diff line number Diff line change @@ -71,23 +71,23 @@ export class FlowHandoff extends ContentFieldsBase {
71
71
handOffBuilder . withExtraData ( {
72
72
language,
73
73
} )
74
- this . isTestIntegration = request . session . is_test_integration
74
+ // this.isTestIntegration = request.session.is_test_integration
75
75
await handOffBuilder . handOff ( )
76
76
}
77
77
}
78
78
79
79
toBotonic ( id : string , request : ActionRequest ) : JSX . Element {
80
- if ( this . isTestIntegration ) {
81
- return (
82
- < Multichannel key = { this . id } >
83
- < Text >
84
- _**HANDOFF IN PREVIEW**_ { '\n' } ℹ️ _At this point, a new case would
85
- be created in { this . queue ?. name } queue. To continue with the
86
- preview, a case resolved scenario will be simulated._
87
- </ Text >
88
- </ Multichannel >
89
- )
90
- }
80
+ // if (this.isTestIntegration) {
81
+ // return (
82
+ // <Multichannel key={this.id}>
83
+ // <Text>
84
+ // _**HANDOFF IN PREVIEW**_ {'\n'}ℹ️ _At this point, a new case would
85
+ // be created in {this.queue?.name} queue. To continue with the
86
+ // preview, a case resolved scenario will be simulated._
87
+ // </Text>
88
+ // </Multichannel>
89
+ // )
90
+ // }
91
91
92
92
return isDev ( request . session ) || isWebchat ( request . session ) ? (
93
93
< WebchatSettings key = { id } enableUserInput = { true } />
You can’t perform that action at this time.
0 commit comments