Switch to JSON from TEXT when storing denylist items for an egg; closes #3034
This commit is contained in:
parent
b7d1c45bcc
commit
b00def2537
7 changed files with 89 additions and 30 deletions
|
@ -80,7 +80,7 @@ class ServerConfigurationStructureService
|
|||
}),
|
||||
'egg' => [
|
||||
'id' => $server->egg->uuid,
|
||||
'file_denylist' => explode(PHP_EOL, $server->egg->inherit_file_denylist),
|
||||
'file_denylist' => $server->egg->inherit_file_denylist,
|
||||
],
|
||||
];
|
||||
}
|
||||
|
|
Reference in a new issue