Skip to content

Commit

Permalink
Merge pull request #2 from jamesrdi/Fix-Links
Browse files Browse the repository at this point in the history
Fix Azure Links
  • Loading branch information
jamesrdi authored Sep 27, 2024
2 parents 6852639 + 869b417 commit 8dca18f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/demo-app/demoApp.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebar_position: 1

While our main focus remains ob the backend of KADAI, we additionaly provide an example frontend in form of a Demo App. This is only an example, as KADAI frontend can be implemented differently for specific use cases. Here is what the demo app looks like:
![Demo App](static/demo-app.png)
### [Click here to go to the Demo App](https://kadai.azurewebsites.net/kadai)
### [Click here to go to the Demo App](https://kadai-io.azurewebsites.net/kadai)

## Try out the Demo App

Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/adapter/gettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,4 +377,4 @@ Then, start your KADAI application. Start your camunda app next, and login. Last
```


More functionalities like the cancelling of a claimed task and their URLs can be found in the [full documentation of the REST-API](https://kadai.azurewebsites.net/kadai/docs/rest/rest-api.html).
More functionalities like the cancelling of a claimed task and their URLs can be found in the [full documentation of the REST-API](https://kadai-io.azurewebsites.net/kadai/docs/rest/rest-api.html).
2 changes: 1 addition & 1 deletion docs/user-guide/core-concepts/restApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ We can also add parameters for filtering or sorting to the request. Following ex
GET http://localhost:8080/kadai/api/v1/tasks?state=READY&sort-by=CLASSIFICATION_KEY
```

The full documentation of the REST-API can be found [here](https://kadai.azurewebsites.net/kadai/docs/rest/rest-api.html).
The full documentation of the REST-API can be found [here](https://kadai-io.azurewebsites.net/kadai/docs/rest/rest-api.html).
2 changes: 1 addition & 1 deletion docs/user-guide/features/kadaiHistorySPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ You can activate SimpleHistoryServiceImpl by adding following dependency to your
<version><put your KADAI version here></version>
</dependency>
```
KADAI also provides a REST service for SimpleHistoryServiceImpl documented [here](https://kadai.azurewebsites.net/kadai/docs/rest/simplehistory-rest-api.html). If you want to use the REST Service, you can add the following dependency to your pom:
KADAI also provides a REST service for SimpleHistoryServiceImpl documented [here](https://kadai-io.azurewebsites.net/kadai/docs/rest/simplehistory-rest-api.html). If you want to use the REST Service, you can add the following dependency to your pom:
```
<dependency>
<groupId>io.kadai.history</groupId>
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/features/queriesFilteringAndSorting.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Here is an example of the query from our [REST-API doc](../core-concepts/restApi

![Query](../static/features/postman-query.png)

More about queries using the REST-API can be found in the [REST-API Documentation](https://kadai.azurewebsites.net/kadai/docs/rest/rest-api.html).
More about queries using the REST-API can be found in the [REST-API Documentation](https://kadai-io.azurewebsites.net/kadai/docs/rest/rest-api.html).

# Query in JAVA-API
You can also execute queries using the [JAVA-API](../core-concepts/javaApiUsage.md) of KADAI. To do that, create a query using the service of the relevant entity. Then, add filtering and sorting parameters to your query and execute it. When querying for Tasks, you need to use ``TaskService.createTaskQuery()``. You can find the query filter and sorting parameters under ``io.kadai.TaskQuery.api``.
Expand Down

0 comments on commit 8dca18f

Please sign in to comment.