rename non-profit to nonprofit
This commit is contained in:
4
app.js
4
app.js
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user