vault/ui/config/deprecation-workflow.js
Angel Garbarino 9d4d5630c2
Address Deprecation no-a-wth-array-like (#28613)
* fixes mfa test suite for no a with array like

* Update mfa-login-enforcement-form.js

* remove deprecation

* pr feedback
2024-10-08 13:40:37 -06:00

19 lines
462 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:deprecate-promise-many-array-behaviors' }, // MFA
],
};