Skip to content

Commit

Permalink
rm datasets config
Browse files Browse the repository at this point in the history
  • Loading branch information
rushtong committed Dec 7, 2023
1 parent e001f48 commit 5112b0a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
import io.dropwizard.db.DataSourceFactory;
import jakarta.validation.Valid;
import jakarta.validation.constraints.NotNull;
import java.util.ArrayList;
import java.util.List;

@JsonIgnoreProperties(ignoreUnknown = true)
public class ConsentConfiguration extends Configuration {
Expand Down Expand Up @@ -47,9 +45,6 @@ public ConsentConfiguration() {
@NotNull
private GoogleOAuth2Config googleAuthentication = new GoogleOAuth2Config();

@JsonProperty("datasets")
private List<String> datasets = new ArrayList<>();

@JsonProperty("httpClient")
public JerseyClientConfiguration getJerseyClientConfiguration() {
return httpClient;
Expand Down Expand Up @@ -93,8 +88,4 @@ public ElasticSearchConfiguration getElasticSearchConfiguration() {
return elasticSearch;
}

public List<String> getDatasets() {
return datasets;
}

}
3 changes: 0 additions & 3 deletions src/test/resources/consent-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,3 @@ elasticSearch:
- localhost
indexName: iName
datasetIndexName: dataset
datasets:
- Melanoma-Regev-Izar-Garraway-DFCI-ICR
- Melanoma_Regev

0 comments on commit 5112b0a

Please sign in to comment.