diff --git a/ui/config/deprecation-workflow.js b/ui/config/deprecation-workflow.js new file mode 100644 index 000000000..f195cdb81 --- /dev/null +++ b/ui/config/deprecation-workflow.js @@ -0,0 +1,10 @@ +/* global self */ +self.deprecationWorkflow = self.deprecationWorkflow || {}; +self.deprecationWorkflow.config = { + workflow: [ + { handler: 'throw', matchId: 'ember-inflector.globals' }, + { handler: 'silence', matchId: 'ember-runtime.deprecate-copy-copyable' }, + { handler: 'silence', matchId: 'ember-console.deprecate-logger' }, + { handler: 'silence', matchId: 'ember-component.send-action' }, + ], +};