rename non-profit to nonprofit

This commit is contained in:
Michael Q Larson
2014-10-26 09:32:57 -07:00
parent 2387e00ca8
commit 029daa816f
7 changed files with 22 additions and 22 deletions

4
app.js
View File

@@ -149,8 +149,8 @@ app.get('/reset/:token', userController.getReset);
app.post('/reset/:token', userController.postReset);
app.get('/signup', userController.getSignup);
app.post('/signup', userController.postSignup);
app.get('/non-profits', contactController.getContact);
app.post('/non-profits', contactController.postContact);
app.get('/nonprofits', contactController.getContact);
app.post('/nonprofits', contactController.postContact);
app.get('/account', passportConf.isAuthenticated, userController.getAccount);
app.post('/account/profile', passportConf.isAuthenticated, userController.postUpdateProfile);
app.post('/account/password', passportConf.isAuthenticated, userController.postUpdatePassword);