diff --git a/README.md b/README.md index e817653..dffde03 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ All API requests except for the initial OAuth login and callback require an `Aut ## Dashboard The service includes a basic dashboard for managing configurations: -- **URL**: `http://localhost:3000/dashboard/` +- **URL**: `http://localhost:3000/app/` ## Extensibility Guide diff --git a/src/index.ts b/src/index.ts index e3d84bb..c2a3d82 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,7 +15,7 @@ app.use("*", prettyJSON()); app.route("/auth", authRoutes); app.route("/api/config", configRoutes); app.route("/api", apiRoutes); -app.route("/dashboard", dashboardRoutes); +app.route("/app", dashboardRoutes); app.notFound((c) => { console.error(`[404 Not Found] ${c.req.method} ${c.req.url}`); diff --git a/src/routes/auth.ts b/src/routes/auth.ts index 24463e1..f40a953 100644 --- a/src/routes/auth.ts +++ b/src/routes/auth.ts @@ -84,7 +84,7 @@ authRoutes.get("/callback", async (c) => {

Authenticated!

Successfully connected to ${providerName}.

- Go to Dashboard + Go to Dashboard