Skip to content

Commit be375bf

Browse files
committed
inbox: update post endpoint uri
1 parent c955b06 commit be375bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Notesnook.Inbox.API/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ app.use(
150150
app.get("/health", (_, res) => {
151151
return res.status(200).json({ status: "ok" });
152152
});
153-
app.post("/inbox", async (req, res) => {
153+
app.post("/", async (req, res) => {
154154
try {
155155
const apiKey = req.headers["authorization"];
156156
if (!apiKey) {

0 commit comments

Comments
 (0)