Skip to content

Instantly share code, notes, and snippets.

@Kuirak
Created May 28, 2014 21:47
Show Gist options
  • Save Kuirak/fd5a3550dd83c7e451bf to your computer and use it in GitHub Desktop.
Save Kuirak/fd5a3550dd83c7e451bf to your computer and use it in GitHub Desktop.
Event.findOne({type:event.type,session_id:event.session_id,timestamp:event.timestamp}).then(function(data){
if(data){
data.params =event.params;
return Q.ninvoke(data,'save')
}else{
return Event.create(event).then(Event.publishCreate);
}
}).fail(sails.log.error);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment