From 6e335ff29aca9619aa12ef29d47b23f448280a24 Mon Sep 17 00:00:00 2001 From: barisusakli Date: Mon, 28 Jul 2014 18:15:41 -0400 Subject: [PATCH] removed debug --- public/src/modules/notifications.js | 2 +- src/routes/debug.js | 35 +---------------------------- 2 files changed, 2 insertions(+), 35 deletions(-) diff --git a/public/src/modules/notifications.js b/public/src/modules/notifications.js index ce591b1b76..750449fc72 100644 --- a/public/src/modules/notifications.js +++ b/public/src/modules/notifications.js @@ -58,7 +58,7 @@ define('notifications', ['sounds'], function(sound) { } }); - var updateNotifCount = function(count) { + function updateNotifCount(count) { if (count > 0) { notifIcon.removeClass('fa-bell-o').addClass('fa-bell'); } else { diff --git a/src/routes/debug.js b/src/routes/debug.js index 7f264d0d01..a03c5b2649 100644 --- a/src/routes/debug.js +++ b/src/routes/debug.js @@ -56,39 +56,6 @@ module.exports = function(app, middleware, controllers) { }); router.get('/test', function(req, res) { - //res.redirect('404'); - var notifications = require('../notifications'); - var nconf = require('nconf'); - - var username = 'julian'; - var topicTitle = 'testing tags'; - var topicSlug = '1748/testing-tags'; - var postIndex = 1; - var tid = 1748; - var fromUid = 2; - - notifications.create({ - bodyShort: '[[notifications:user_posted_to, ' + username + ', ' + topicTitle + ']]', - bodyLong: 'asdasd khajsdhakhdakj hdkash dakhdakjdhakjs', - path: nconf.get('relative_path') + '/topic/' + topicSlug + '/' + postIndex, - uniqueId: 'topic:' + tid + ':uid:' + fromUid, - tid: tid, - from: fromUid - }, function(err, nid) { - notifications.push(nid, [1]); - res.json('done'); - }); + res.redirect('404'); }); - - router.get('/dailyunread', function(req, res) { - //var userNotifs = require('./user'); - user.notifications.getDailyUnread(1, function(err, data) { - if (err) { - res.json(500, err.message); - } - - res.json(data); - - }); - }) };