We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd44fcc commit 99fcd13Copy full SHA for 99fcd13
app/controllers/events/view/tickets/attendees/list.js
@@ -45,7 +45,6 @@ export default Controller.extend({
45
attendee.save()
46
.then(savedAttendee => {
47
this.notify.success(this.l10n.t(`Attendee ${savedAttendee.isCheckedIn ? 'Checked-In' : 'Checked-Out'} Successfully`));
48
- this.send('refreshRoute');
49
})
50
.catch(() => {
51
this.notify.error(this.l10n.t('An unexpected error has occurred'));
app/routes/events/view/tickets/attendees/list.js
@@ -70,10 +70,5 @@ export default Route.extend({
70
query : queryObject,
71
objectType : 'attendees'
72
};
73
- },
74
- actions: {
75
- refreshRoute() {
76
- this.refresh();
77
- }
78
}
79
});
0 commit comments