Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
feat(NUM-959) AQL editor spring boot starter
Browse files Browse the repository at this point in the history
- Changed REST path and added it to README.md
  • Loading branch information
Alexander Karle committed Jan 15, 2021
1 parent 7e8fd4a commit 356986e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# Spring boot starter for the AQL editor backend

Added as dependency the starter will expose the following REST endpoints:

- /aqleditor/v1/aql
- /aqleditor/v1/containment
- /aqleditor/v1/template
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

@RestController
@RequestMapping(
path = "/rest/v1/aql",
path = "/aqleditor/v1/aql",
produces = {MediaType.APPLICATION_JSON_VALUE})
@AllArgsConstructor
public class AqlEditorAqlController extends BaseController {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

@RestController
@RequestMapping(
path = "/rest/v1/containment",
path = "/aqleditor/v1/containment",
produces = {MediaType.APPLICATION_JSON_VALUE})
@AllArgsConstructor
public class AqlEditorContainmentController extends BaseController {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

@RestController
@RequestMapping(
path = "/rest/v1/template",
path = "/aqleditor/v1/template",
produces = {MediaType.APPLICATION_JSON_VALUE})
@AllArgsConstructor
public class AqlEditorTemplateController extends BaseController {
Expand Down

0 comments on commit 356986e

Please sign in to comment.