spee.ch/helpers/libraries/analytics.js
2017-06-27 22:41:48 -07:00

22 lines
474 B
JavaScript

const db = require('../../models');
const logger = require('winston');
module.exports = {
postToAnalytics: (action, url, ipAddress, result) => {
logger.silly('creating record for analytics');
if (result && (typeof result !== 'string')) {
result = result.toString();
}
db.Analytics.create({
action,
url,
ipAddress,
result,
})
.then()
.catch(error => {
logger.error('sequelize error', error);
});
},
};