Files
Fleetbase-Mirror-Repo/console/app/helpers/get-notification-key.js
2023-10-30 19:17:01 +08:00

7 lines
249 B
JavaScript

import { helper } from '@ember/component/helper';
import createNotificationKey from '../utils/create-notification-key';
export default helper(function getNotificationKey([definition, name]) {
return createNotificationKey(definition, name);
});