Skip to content

Commit

Permalink
Merge branch 'dtq-dev' into ufal/be-collection2item-table-is-not-migr…
Browse files Browse the repository at this point in the history
…ated
  • Loading branch information
milanmajchrak authored Sep 21, 2023
2 parents 867e1f0 + fb252cf commit 9394729
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
3 changes: 3 additions & 0 deletions dspace-api/src/test/data/dspaceFolder/config/local.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -268,3 +268,6 @@ versioning.enabled=true
### PID config
lr.pid.community.configurations = community=47501cdc-e2eb-44e5-85e0-89a31dc8ceee, prefix=123456789, type=epic, canonical_prefix=http://hdl.handle.net/, subprefix=1
lr.pid.community.configurations = community=*, prefix=123456789, type=local, canonical_prefix=http://hdl.handle.net/, subprefix=2

#### Authority configuration `authority.cfg`
authority.controlled.dc.relation = true
Original file line number Diff line number Diff line change
Expand Up @@ -2162,7 +2162,7 @@ public void test_placeRecalculationAfterDelete_complex() throws Exception {
.build();

// metadata - person 3 & project 2
itemService.addMetadata(context, pe3_1, "dc", "relation", null, null, "project 2 (mdv)");
itemService.addMetadata(context, pe3_1, "dc", "relation", null, null, "project 2 (mdv)", "20000", 300);

// relationship - person 1 & project 3
RelationshipBuilder.createRelationshipBuilder(context, pe1_1, pr3_1, isProjectOfPerson)
Expand Down Expand Up @@ -2193,14 +2193,14 @@ public void test_placeRecalculationAfterDelete_complex() throws Exception {
.build();

// metadata - person 3 & project 4
itemService.addMetadata(context, pe3_1, "dc", "relation", null, null, "project 4 (mdv)");
itemService.addMetadata(context, pe3_1, "dc", "relation", null, null, "project 4 (mdv)", "20000", 300);

// relationship - person 3 & project 5
RelationshipBuilder.createRelationshipBuilder(context, pe3_1, pr5_1, isProjectOfPerson)
.build();

// metadata - person 3 & project 6
itemService.addMetadata(context, pe3_1, "dc", "relation", null, null, "project 6 (mdv)");
itemService.addMetadata(context, pe3_1, "dc", "relation", null, null, "project 6 (mdv)", "20000", 300);

// SUMMARY
//
Expand Down
5 changes: 5 additions & 0 deletions dspace/config/clarin-dspace.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -219,3 +219,8 @@ identifiers.item-status.register-doi = false
##### Dataquest URL - sing in the footer #####
themed.by.url = https://www.dataquest.sk/dspace
themed.by.company.name = dataquest s.r.o.


#### Authority configuration `authority.cfg`
## dc.relation authority is configured only because of correct item importing, but it is not used anymore.
authority.controlled.dc.relation = true

0 comments on commit 9394729

Please sign in to comment.