Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>it.eng.dome</groupId>
<artifactId>search</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<name>Search and Browsing</name>
<description>Demo for DOME Project</description>

Expand Down
4 changes: 4 additions & 0 deletions release_note.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

**Release Notes** for the *Search*:

### <code>1.2.1</code>
**Bug Fix**
* Rename endpoint `/api/SearchOrganizations` to `/api/searchOrganizations` to follow REST API naming conventions.

### <code>1.2.0</code>
**Feature**
* Introduced new Elasticsearch index `provider-index` dedicated to Organizations (providers) indexing.
Expand Down
7 changes: 6 additions & 1 deletion src/main/docker/.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
####################
# SEARCH VARIABLES
####################
SEARCH_VERSION=1.1.4
SEARCH_VERSION=1.2.1
SEARCH_IMAGE=production.eng.it:8433/dome/search
SEARCH_PORT=8080

Expand Down Expand Up @@ -31,3 +31,8 @@ ELASTIC_ADDRESS_PORT=9200

ELASTIC_USERNAME=elastic
ELASTIC_PASSWORD=dome_2024!

####################
# DOME VARIABLES
####################
DOME_BASE_URL=https://tmf.dome-marketplace-sbx.org
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public ResponseEntity<List<String>> getComplianceLevels(@RequestParam(name = "co
return ResponseEntity.ok(complianceLevels);
}

@PostMapping(value = "/SearchOrganizations")
@PostMapping(value = "/searchOrganizations")
public ResponseEntity<List<Organization>> searchOrganizations(@RequestBody OrganizationSearchRequest request,
@RequestParam(name="considerAllOrgs", required = false, defaultValue = "false") boolean considerAllOrgs,
Pageable pageable){
Expand Down
Loading