2019-04-24 21:43:02 +02:00
|
|
|
/* global self */
|
|
|
|
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
|
|
self.deprecationWorkflow.config = {
|
2017-07-31 13:59:19 +02:00
|
|
|
workflow: [
|
2019-04-24 21:43:02 +02:00
|
|
|
{ handler: "silence", matchId: "ember-cli-page-object.old-collection-api" },
|
2019-07-13 10:26:30 +02:00
|
|
|
{ handler: "silence", matchId: "deprecate-fetch-ember-data-support" },
|
|
|
|
{ handler: "silence", matchId: "computed-property.override" },
|
|
|
|
{ handler: "silence", matchId: "ember-cp-validations.inline-validator" },
|
2019-04-24 21:43:02 +02:00
|
|
|
{ handler: "silence", matchId: "ember-runtime.deprecate-copy-copyable" }
|
2017-07-31 13:59:19 +02:00
|
|
|
]
|
|
|
|
};
|