add status, turn hours into integer, create a directory view of all nonprofits

This commit is contained in:
Michael Q Larson
2015-04-08 14:36:05 -07:00
parent 61e07041a7
commit c02fafa6a9
6 changed files with 60 additions and 19 deletions

6
app.js
View File

@ -329,11 +329,9 @@ app.post('/email-signin', userController.postSignin);
* Nonprofit Project routes.
*/
//app.get('/nonprofits', contactController.getNonprofitsForm);
//
//app.post('/nonprofits', contactController.postNonprofitsForm);
app.get('/nonprofits', nonprofitController.nonprofitsHome);
app.get('/nonprofits/home', nonprofitController.nonprofitsHome);
app.get('/nonprofits/directory', nonprofitController.nonprofitsDirectory);
app.get('/nonprofits/are-you-with-a-registered-nonprofit', nonprofitController.areYouWithARegisteredNonprofit);