Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

✏️ some typo (#861)

authored by

Thibault Le Ouay and committed by
GitHub
486b4839 1480019f

+9 -8
-1
apps/docs/api-reference/auth.mdx
··· 22 22 We currently do not have an SDK to make the best out of it. Any contributions 23 23 are welcome. 24 24 25 - The API infrastructure is powered by [Unkey](https://unkey.dev).
+1 -1
apps/server/src/v1/incidents/get_all.ts
··· 11 11 const getAllRoute = createRoute({ 12 12 method: "get", 13 13 tags: ["incident"], 14 - description: "Get all incidents", 14 + description: "Get all Incidents", 15 15 path: "/", 16 16 request: {}, 17 17 responses: {
+1 -1
apps/server/src/v1/monitors/summary/get.ts
··· 33 33 const getMonitorStats = createRoute({ 34 34 method: "get", 35 35 tags: ["monitor"], 36 - description: "Get monitor daily summary", 36 + description: "Get a monitor daily summary", 37 37 path: "/:id/summary", 38 38 request: { 39 39 params: ParamsSchema,
+2 -1
apps/server/src/v1/statusReportUpdates/get.ts
··· 11 11 const getRoute = createRoute({ 12 12 method: "get", 13 13 tags: ["status_report_update"], 14 + description: "Get a Status Reports Update", 14 15 path: "/:id", 15 16 request: { 16 17 params: ParamsSchema, ··· 22 23 schema: StatusReportUpdateSchema, 23 24 }, 24 25 }, 25 - description: "Get all status report updates", 26 + description: "Get a status report update", 26 27 }, 27 28 ...openApiErrorResponses, 28 29 },
+1
apps/server/src/v1/statusReportUpdates/post.ts
··· 18 18 const createStatusUpdate = createRoute({ 19 19 method: "post", 20 20 tags: ["status_report_update"], 21 + description: "Create a Status Report Update", 21 22 path: "/", 22 23 request: { 23 24 body: {
+1 -1
apps/server/src/v1/statusReports/delete.ts
··· 11 11 const deleteRoute = createRoute({ 12 12 method: "delete", 13 13 tags: ["status_report"], 14 - description: "Delete an status report", 14 + description: "Delete a Status Report", 15 15 path: "/:id", 16 16 request: { 17 17 params: ParamsSchema,
+1 -1
apps/server/src/v1/statusReports/get.ts
··· 11 11 const getRoute = createRoute({ 12 12 method: "get", 13 13 tags: ["status_report"], 14 - description: "Get an status report", 14 + description: "Get a Status Report", 15 15 path: "/:id", 16 16 request: { 17 17 params: ParamsSchema,
+1 -1
apps/server/src/v1/statusReports/get_all.ts
··· 11 11 const getAllRoute = createRoute({ 12 12 method: "get", 13 13 tags: ["status_report"], 14 - description: "Get all status reports", 14 + description: "Get all Status Reports", 15 15 path: "/", 16 16 request: {}, 17 17 responses: {
+1 -1
apps/server/src/v1/statusReports/post.ts
··· 21 21 const postRoute = createRoute({ 22 22 method: "post", 23 23 tags: ["status_report"], 24 - description: "Create an status report", 24 + description: "Create a Status Report", 25 25 path: "/", 26 26 request: { 27 27 body: {