Skip to content

Commit

Permalink
api fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragon1320 committed Jul 1, 2018
1 parent f51701a commit c6714a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/routes/api/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ router.route("/@me").get(authUser, (req, res) => {
}).patch(authUser, (req, res) => {

// Currently no fields that users can edit.
res.json({ status: 200, message: "OK", error: null });
res.json({ status: 200, message: "OK - no changes made", error: null });

}).delete(authUser, async (req, res) => {

Expand Down

0 comments on commit c6714a4

Please sign in to comment.