add new counselors and add legacy route for about path

This commit is contained in:
Michael Q Larson
2015-01-19 10:31:31 -08:00
parent f6603aadae
commit 88d353a3ca
2 changed files with 15 additions and 1 deletions

1
app.js
View File

@ -215,6 +215,7 @@ app.get(
resourcesController.pairProgramWithTeamViewer
);
app.get('/learn-to-code', resourcesController.about);
app.get('/about', resourcesController.about);
app.get('/login', userController.getLogin);
app.post('/login', userController.postLogin);
app.get('/logout', userController.logout);