-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24f5c86
commit 311c9ca
Showing
9 changed files
with
814 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
181 changes: 154 additions & 27 deletions
181
docs/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx
Large diffs are not rendered by default.
Oops, something went wrong.
185 changes: 151 additions & 34 deletions
185
docs/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; | ||
|
||
const sidebar: SidebarsConfig = { | ||
apisidebar: [ | ||
{ | ||
type: "doc", | ||
id: "apis-tools/zeebe-api-rest/specifications/zeebe-rest-api", | ||
}, | ||
{ | ||
type: "category", | ||
label: "Cluster", | ||
items: [ | ||
{ | ||
type: "doc", | ||
id: "apis-tools/zeebe-api-rest/specifications/get-cluster-topology", | ||
label: "Get cluster topology", | ||
className: "api-method get", | ||
}, | ||
], | ||
}, | ||
{ | ||
type: "category", | ||
label: "User task", | ||
items: [ | ||
{ | ||
type: "doc", | ||
id: "apis-tools/zeebe-api-rest/specifications/complete-a-user-task", | ||
label: "Complete a user task", | ||
className: "api-method post", | ||
}, | ||
{ | ||
type: "doc", | ||
id: "apis-tools/zeebe-api-rest/specifications/assign-a-user-task", | ||
label: "Assign a user task", | ||
className: "api-method post", | ||
}, | ||
{ | ||
type: "doc", | ||
id: "apis-tools/zeebe-api-rest/specifications/update-a-user-task", | ||
label: "Update a user task", | ||
className: "api-method patch", | ||
}, | ||
{ | ||
type: "doc", | ||
id: "apis-tools/zeebe-api-rest/specifications/unassign-a-user-task", | ||
label: "Unassign a user task", | ||
className: "api-method delete", | ||
}, | ||
], | ||
}, | ||
], | ||
}; | ||
|
||
export default sidebar.apisidebar; |
Oops, something went wrong.