52fe56ec87
* adds prefer-const to eslint config and runs fixer * reverts unintended change
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
export function initialize(appInstance) {
|
|
const service = appInstance.lookup('service:csp-event');
|
|
service.attach();
|
|
}
|
|
|
|
export default {
|
|
name: 'track-csp-event',
|
|
initialize,
|
|
};
|