mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-21 22:51:09 +02:00
20 lines
541 B
JavaScript
20 lines
541 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* global self */
|
|
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
self.deprecationWorkflow.config = {
|
|
throwOnUnhandled: false,
|
|
};
|
|
|
|
self.deprecationWorkflow.config = {
|
|
// current output from deprecationWorkflow.flushDeprecations();
|
|
workflow: [
|
|
// ember-data
|
|
{ handler: 'silence', matchId: 'ember-data:no-a-with-array-like' }, // MFA
|
|
{ handler: 'silence', matchId: 'ember-data:deprecate-promise-many-array-behaviors' }, // MFA
|
|
],
|
|
};
|