2023-04-10 15:36:59 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2022-12-01 15:45:31 +00:00
|
|
|
import Helper from '@ember/component/helper';
|
|
|
|
|
|
|
|
export function asyncEscapeHatch([model, relationship]) {
|
|
|
|
return model[relationship].content;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Helper.helper(asyncEscapeHatch);
|