Ejemplo n.º 1
0
Archivo: db.js Proyecto: epochtalk/core
 .then(function(dbThread) {
   boardId = dbThread.board_id;
   threadTitle = dbThread.title;
   thread = dbThread;
   return boardsDb.incPostCount(boardId);
 })
Ejemplo n.º 2
0
Archivo: db.js Proyecto: epochtalk/core
 .then(function(user) {
   postUsername = user.username;
   return threadsDb.incPostCount(post.thread_id);
 })