working create grants, getall, and delete with clean methods

This commit is contained in:
Arjun Patel
2019-01-18 18:02:04 -08:00
parent f046a9f605
commit b0597a99e2
7 changed files with 74 additions and 78 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ exports.create = (req, res, next) => {
.then(donor => {
// Send created donor to client
return res.status(201).json({
message: 'User created',
message: 'Donor created',
donor
});
})