mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 21:51:09 +02:00
* fixes mfa test suite for no a with array like * Update mfa-login-enforcement-form.js * remove deprecation * pr feedback
19 lines
462 B
JavaScript
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
|
|
],
|
|
};
|