synergy fix
This commit is contained in:
parent
99987067cc
commit
bc2b8322a4
@ -324,6 +324,7 @@ public class DatabaseController {
|
|||||||
public String remove_entry(@RequestParam Map<String, String> params) {
|
public String remove_entry(@RequestParam Map<String, String> params) {
|
||||||
String section = params.get("section");
|
String section = params.get("section");
|
||||||
long entry_id = Long.parseLong(params.get("entry_id"));
|
long entry_id = Long.parseLong(params.get("entry_id"));
|
||||||
|
|
||||||
switch (section) {
|
switch (section) {
|
||||||
case "agge" -> { bioService.removeById(entry_id); synergyService.removeByEntityId(entry_id, SectionType.AGE); }
|
case "agge" -> { bioService.removeById(entry_id); synergyService.removeByEntityId(entry_id, SectionType.AGE); }
|
||||||
case "hobb" -> { hobbyService.removeById(entry_id); synergyService.removeByEntityId(entry_id, SectionType.HOBBY); }
|
case "hobb" -> { hobbyService.removeById(entry_id); synergyService.removeByEntityId(entry_id, SectionType.HOBBY); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user