Added functuality to the edit button. Added router to /commets/:id/edit as well as commentEdit method in story js.

This commit is contained in:
MrRenter
2015-04-18 02:40:48 -04:00
parent 47bb301a91
commit 349dbbc2af
3 changed files with 76 additions and 4 deletions

5
app.js Normal file → Executable file
View File

@ -470,6 +470,11 @@ app.post(
storyController.commentOnCommentSubmit
);
app.post(
'/stories/comment/:id/edit',
storyController.commentEdit
);
app.get(
'/stories/submit',
storyController.submitNew