Pull request #172: Ignored hint color
Merge in RED/persistence-service from ignore-hint-color-backend to master * commit 'b3eb73f14e066d865e395170d592d28885c1c200': Ignored hint color
This commit is contained in:
commit
b147779a4c
@ -21,5 +21,6 @@ public class Colors {
|
||||
private String dictionaryRequestColor;
|
||||
private String manualRedactionColor;
|
||||
private String previewColor;
|
||||
private String ignoredHintColor;
|
||||
|
||||
}
|
||||
|
||||
@ -49,4 +49,7 @@ public class ColorsEntity {
|
||||
@Column
|
||||
private String previewColor;
|
||||
|
||||
@Column
|
||||
private String ignoredHintColor;
|
||||
|
||||
}
|
||||
|
||||
@ -25,6 +25,7 @@ public class ColorsService {
|
||||
entity.setDefaultColor("#aaaaaa");
|
||||
entity.setDictionaryRequestColor("#aaaaaa");
|
||||
entity.setPreviewColor("#aaaaaa");
|
||||
entity.setIgnoredHintColor("#aaaaaa");
|
||||
entity.setNotRedacted("#aaaaaa");
|
||||
entity.setManualRedactionColor("#aaaaaa");
|
||||
entity.setRequestAdd("#aaaaaa");
|
||||
|
||||
@ -1798,6 +1798,9 @@ databaseChangeLog:
|
||||
- column:
|
||||
name: updated_color
|
||||
type: VARCHAR(255)
|
||||
- column:
|
||||
name: ignored_hint_color
|
||||
type: VARCHAR(255)
|
||||
tableName: color_configuration
|
||||
- changeSet:
|
||||
id: 1637073006104-77
|
||||
|
||||
@ -99,6 +99,7 @@ public class TypeTest extends AbstractPersistenceServerServiceTest {
|
||||
colors.setNotRedacted("#dddddd");
|
||||
colors.setRequestAdd("#dddddd");
|
||||
colors.setRequestRemove("#dddddd");
|
||||
colors.setIgnoredHintColor("#dddddd");
|
||||
colors.setUpdatedColor("#dddddd");
|
||||
|
||||
colors.setDossierTemplateId(dossierTemplate.getId());
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user