Some small bugfixes for import
parent
b5761464eb
commit
9184050986
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@librecms/ccm-cms",
|
"name": "@librecms/ccm-cms",
|
||||||
"version": "7.0.0-SNAPSHOT.2023-02-18T145938",
|
"version": "7.0.0-SNAPSHOT.2023-02-22T184921",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@librecms/ccm-cms",
|
"name": "@librecms/ccm-cms",
|
||||||
"version": "7.0.0-SNAPSHOT.2023-02-18T145938",
|
"version": "7.0.0-SNAPSHOT.2023-02-22T184921",
|
||||||
"license": "LGPL-3.0-or-later",
|
"license": "LGPL-3.0-or-later",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tiptap/core": "^2.0.0-beta.127",
|
"@tiptap/core": "^2.0.0-beta.127",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@librecms/ccm-cms",
|
"name": "@librecms/ccm-cms",
|
||||||
"version": "7.0.0-SNAPSHOT.2023-02-18T145938",
|
"version": "7.0.0-SNAPSHOT.2023-02-22T184921",
|
||||||
"description": "JavaScript stuff for ccm-cms",
|
"description": "JavaScript stuff for ccm-cms",
|
||||||
"main": "target/generated-resources/assets/@content-sections/cms-admin.js",
|
"main": "target/generated-resources/assets/@content-sections/cms-admin.js",
|
||||||
"types": "target/generated-resources/assets/@content-sections/cms-admin.d.ts",
|
"types": "target/generated-resources/assets/@content-sections/cms-admin.d.ts",
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,7 @@ public class ContentSectionImExporter
|
||||||
addRequiredEntities(
|
addRequiredEntities(
|
||||||
Set.of(
|
Set.of(
|
||||||
Category.class,
|
Category.class,
|
||||||
|
Folder.class,
|
||||||
ResourceType.class,
|
ResourceType.class,
|
||||||
LifecycleDefinition.class,
|
LifecycleDefinition.class,
|
||||||
Workflow.class
|
Workflow.class
|
||||||
|
|
|
||||||
|
|
@ -321,9 +321,11 @@ public class Folder extends Category implements Serializable {
|
||||||
@JoinTable(
|
@JoinTable(
|
||||||
name = "FOLDER_CONTENT_SECTION_MAP", schema = DB_SCHEMA,
|
name = "FOLDER_CONTENT_SECTION_MAP", schema = DB_SCHEMA,
|
||||||
inverseJoinColumns = {
|
inverseJoinColumns = {
|
||||||
@JoinColumn(name = "CONTENT_SECTION_ID")},
|
@JoinColumn(name = "CONTENT_SECTION_ID")
|
||||||
|
},
|
||||||
joinColumns = {
|
joinColumns = {
|
||||||
@JoinColumn(name = "FOLDER_ID")}
|
@JoinColumn(name = "FOLDER_ID")
|
||||||
|
}
|
||||||
)
|
)
|
||||||
@JsonIdentityReference(alwaysAsId = true)
|
@JsonIdentityReference(alwaysAsId = true)
|
||||||
private ContentSection section;
|
private ContentSection section;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue