ability for users to now follow/subscribe to threads

This commit is contained in:
Julian Lam
2013-06-06 20:39:45 -04:00
parent 7e55e7b3d2
commit 882b9a917f
7 changed files with 160 additions and 13 deletions

View File

@@ -264,9 +264,9 @@ var express = require('express'),
app.get('/api/:method/:id*', api_method);
app.get('/test', function(req, res) {
meta.config.get(function(config) {
res.send(JSON.stringify(config, null, 4));
});
var ThreadTools = require('./threadTools.js');
ThreadTools.notify_followers(3);
res.send();
});