summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-client/src/main/kotlin
AgeCommit message (Collapse)Author
2024-03-05Updated package versions, updated web server tests. (#207)Dante Niewenhuis
* Updated all package versions including kotlin. Updated all web-server tests to run. * Changed the java version of the tests. OpenDC now only supports java 19. * small update * test update * new update * updated docker version to 19 * updated docker version to 19
2022-10-06style: Eliminate use of wildcard importsFabian Mastenbroek
This change updates the repository to remove the use of wildcard imports everywhere. Wildcard imports are not allowed by default by Ktlint as well as Google's Java style guide.
2022-05-18feat(web/client): Support client construction without AuthControllerFabian Mastenbroek
This change updates the `OpenDCClient` and `OpenDCRunnerClient` to support connecting to an API that is not protected by authorization. This is useful in a local development context where authorization is explicitly disabled.
2022-04-04feat(web/client): Add separate web client implementationFabian Mastenbroek
This change implements a simple client for the OpenDC REST API into a separate module. This allows other users to use this module as well.