File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
app/pods/components/jobs/job-view Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export default class JobViewComponent extends Component {
8
8
@service currentUser
9
9
@service router
10
10
@service store
11
+ @service webengage
11
12
12
13
showTakeTestModal = false
13
14
showApplyToJobModal = false
@@ -50,7 +51,7 @@ export default class JobViewComponent extends Component {
50
51
yield jobApplication . save ( )
51
52
this . set ( 'jobApplication' , jobApplication )
52
53
this . set ( 'showApplyToJobModal' , false )
53
- this . webengage . track ( "Hire: Apply To Job" , { } )
54
+ this . webengage . trackEvent ( "Hire: Apply To Job" , { } )
54
55
} catch ( err ) {
55
56
56
57
if ( err . errors [ 0 ] . title == 'Not eligible for this Job' ) {
@@ -62,7 +63,7 @@ export default class JobViewComponent extends Component {
62
63
63
64
@action
64
65
takeToProfileEditor ( step = 3 ) {
65
- this . webengage . track ( "Complete Profile and Apply" , { } )
66
+ this . webengage . trackEvent ( "Complete Profile and Apply" , { } )
66
67
this . router . transitionTo ( 'applicants.profile.me' , { queryParams : { job_id : this . job . id , step } } )
67
68
}
68
69
You can’t perform that action at this time.
0 commit comments