mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 03:27:54 +00:00
* Move global-flash to HDS-specified area * Add flash-toast component * use flash toast for flash messages * Use spacing vars * Remove unnecessary key * Cleanup + tests * Remove nondeterministic build warning * add changelog * I wish this was automatic
14 lines
412 B
JavaScript
14 lines
412 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import FlashMessages from 'ember-cli-flash/services/flash-messages';
|
|
|
|
/*
|
|
we extend the ember-cli-flash service here so each ember engine can
|
|
import 'flash-messages' as a dependency giving it access to the
|
|
<FlashMessage> template in the main app's cluster.hbs file
|
|
*/
|
|
export default class FlashMessageService extends FlashMessages {}
|