Changed editing redirection.

This commit is contained in:
Naida Vatric
2020-03-20 15:40:38 +01:00
parent 55cb01c3c2
commit 60f74c2cde
7 changed files with 54 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
const editSuccess = async (req, res) => {
const title = "Uspjeh!";
res.render("editSuccess", { title });
};
module.exports = {
editSuccess
};