Merge branch 'pull/723' into development

# Conflicts:
#	mvis/ivis-core
This commit is contained in:
Tomas Bures 2019-12-07 13:56:49 +01:00
commit 3c4fbf2754
8 changed files with 21 additions and 3 deletions

View file

@ -8,6 +8,7 @@ const Entity = {
const Event = {
[Entity.SUBSCRIPTION]: {
CREATED: 'created',
UPDATED: 'updated',
LATEST_OPEN: 'latest_open',
LATEST_CLICK: 'latest_click'
},
@ -28,6 +29,7 @@ const EntityVals = {
const EventVals = {
[Entity.SUBSCRIPTION]: {
created: 'CREATED',
updated: 'UPDATED',
latest_open: 'LATEST_OPEN',
latest_click: 'LATEST_CLICK'
},
@ -45,4 +47,4 @@ module.exports = {
Event,
EntityVals,
EventVals
};
};