Skip to content

Commit

Permalink
feat: add standard success status to some responses
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Sep 25, 2023
1 parent 7b3cc87 commit c7402c6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/controllers/organization.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export const editHomeOrg = async (req, res) => {

return res.json({
message: 'Home org currently being updated, will be completed soon.',
success: true
});
} catch (error) {
console.trace(error);
Expand Down Expand Up @@ -345,6 +346,7 @@ export const addMetadata = async (req, res) => {

return res.json({
message: 'Home org currently being updated, will be completed soon.',
success: true
});
} catch (error) {
console.trace(error);
Expand Down

0 comments on commit c7402c6

Please sign in to comment.