Files
kami-parse-server/src/Adapters/Analytics/AnalyticsAdapter.js

23 lines
606 B
JavaScript
Raw Normal View History

/*eslint no-unused-vars: "off"*/
export class AnalyticsAdapter {
/*
@param parameters: the analytics request body, analytics info will be in the dimensions property
@param req: the original http request
*/
appOpened(parameters, req) {
return Promise.resolve({});
}
/*
@param eventName: the name of the custom eventName
@param parameters: the analytics request body, analytics info will be in the dimensions property
@param req: the original http request
*/
trackEvent(eventName, parameters, req) {
return Promise.resolve({});
}
}
export default AnalyticsAdapter;