Skip to content
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

chore: Silence the evented-api-usage warnings #4132

Merged
merged 1 commit into from
Feb 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion config/deprecation-workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ window.deprecationWorkflow = window.deprecationWorkflow || {};
window.deprecationWorkflow.config = {
workflow: [
{ handler: 'silence', matchId: 'ember-routing.route-router' },
{ handler: 'silence', matchId: 'ember-views.curly-components.jquery-element' } // Depreciating the jquery warnings until we have moved away from jquery or used native jquery in the app.
{ handler: 'silence', matchId: 'ember-views.curly-components.jquery-element' }, // Silencing the jquery warnings until we have moved away from jquery or used native jquery in the app.
{ handler: 'silence', matchId: 'ember-data.evented-api-usage' } // Silencing the Evented-API warnings until we have solved https://github.com/fossasia/open-event-frontend/issues/4024 .
]
};