Files
vault/ui/app/services/flash-messages.js
Chelsea Shaw c5d39c816a UI: Use HDS::Toast for flash messages (#25459)
* 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
2024-02-15 18:06:51 -06:00

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 {}