mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-14 18:47:01 +02:00
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,
|
|
};
|