Merge branch 'twitter-auth' of https://github.com/FreeCodeCamp/freecodecamp into one-column-challenges

Conflicts:
	app.js
This commit is contained in:
Michael Q Larson
2015-01-17 17:46:12 -08:00
414 changed files with 84482 additions and 204 deletions

View File

@ -88,12 +88,6 @@ module.exports = {
});
},
programmerInterviewQuestionsApp: function(req, res) {
res.render('resources/programmer-interview-questions-app', {
title: 'Programmer Interview Questions App'
});
},
pairProgramWithTeamViewer: function(req, res) {
Challenge.find({}, null, { sort: { challengeNumber: 1 } }, function(err, c) {
if (err) {
@ -168,10 +162,6 @@ module.exports = {
});
});
},
interviewQuestions: function(req, res) {
res.json(questions);
}
};