RED-8762: fixed path variable

This commit is contained in:
Ali Oezyetimoglu 2024-04-17 09:36:57 +02:00
parent 544e188e9b
commit ffe8caaeea

View File

@ -322,7 +322,7 @@ public class DictionaryController implements DictionaryResource {
@Override
public void changeFlags(@PathVariable(TYPE_PARAMETER_NAME) String type,
@PathVariable(DOSSIER_TEMPLATE_PARAMETER_NAME) String dossierTemplateId,
@RequestParam(value = DOSSIER_ID_PARAMETER_NAME) String dossierId,
@PathVariable(value = DOSSIER_ID_PARAMETER_NAME) String dossierId,
@RequestParam(value = "addToDictionary") boolean addToDictionary) {
dictionaryService.changeAddToDictionary(type, dossierTemplateId, dossierId, addToDictionary);