Skip to content

Commit

Permalink
✏️ some typo (#861)
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultleouay authored Jun 4, 2024
1 parent 1480019 commit 486b483
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
1 change: 0 additions & 1 deletion apps/docs/api-reference/auth.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ Use the above snippet to try it out.
We currently do not have an SDK to make the best out of it. Any contributions
are welcome.

The API infrastructure is powered by [Unkey](https://unkey.dev).
2 changes: 1 addition & 1 deletion apps/server/src/v1/incidents/get_all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { HTTPException } from "hono/http-exception";
const getAllRoute = createRoute({
method: "get",
tags: ["incident"],
description: "Get all incidents",
description: "Get all Incidents",
path: "/",
request: {},
responses: {
Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/v1/monitors/summary/get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const dailyStatsSchemaArray = z
const getMonitorStats = createRoute({
method: "get",
tags: ["monitor"],
description: "Get monitor daily summary",
description: "Get a monitor daily summary",
path: "/:id/summary",
request: {
params: ParamsSchema,
Expand Down
3 changes: 2 additions & 1 deletion apps/server/src/v1/statusReportUpdates/get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { HTTPException } from "hono/http-exception";
const getRoute = createRoute({
method: "get",
tags: ["status_report_update"],
description: "Get a Status Reports Update",
path: "/:id",
request: {
params: ParamsSchema,
Expand All @@ -22,7 +23,7 @@ const getRoute = createRoute({
schema: StatusReportUpdateSchema,
},
},
description: "Get all status report updates",
description: "Get a status report update",
},
...openApiErrorResponses,
},
Expand Down
1 change: 1 addition & 0 deletions apps/server/src/v1/statusReportUpdates/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { HTTPException } from "hono/http-exception";
const createStatusUpdate = createRoute({
method: "post",
tags: ["status_report_update"],
description: "Create a Status Report Update",
path: "/",
request: {
body: {
Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/v1/statusReports/delete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { HTTPException } from "hono/http-exception";
const deleteRoute = createRoute({
method: "delete",
tags: ["status_report"],
description: "Delete an status report",
description: "Delete a Status Report",
path: "/:id",
request: {
params: ParamsSchema,
Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/v1/statusReports/get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { HTTPException } from "hono/http-exception";
const getRoute = createRoute({
method: "get",
tags: ["status_report"],
description: "Get an status report",
description: "Get a Status Report",
path: "/:id",
request: {
params: ParamsSchema,
Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/v1/statusReports/get_all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { HTTPException } from "hono/http-exception";
const getAllRoute = createRoute({
method: "get",
tags: ["status_report"],
description: "Get all status reports",
description: "Get all Status Reports",
path: "/",
request: {},
responses: {
Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/v1/statusReports/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { sendEmailHtml } from "@openstatus/emails";
const postRoute = createRoute({
method: "post",
tags: ["status_report"],
description: "Create an status report",
description: "Create a Status Report",
path: "/",
request: {
body: {
Expand Down

0 comments on commit 486b483

Please sign in to comment.