Skip to content

Commit

Permalink
change back endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
feruzm committed Jun 16, 2023
1 parent d587266 commit b78364d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ router.all('/me', authenticate(), async (req, res) => {
});

/** decode memo */
router.all('/decodeMemo', authenticate(), async (req, res) => {
router.all('/decode', authenticate(), async (req, res) => {
let memoDecoded = await decodeMemo(req.memo);
res.json({
memoDecoded,
Expand Down

0 comments on commit b78364d

Please sign in to comment.