Skip to content
Snippets Groups Projects
Commit d0ddfbed authored by Andreas Schindlbeck's avatar Andreas Schindlbeck
Browse files

merged favoriten into master

parents 59e481f4 281dd52c
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,8 @@
<include relativeToChangelogFile="true" file="struct/create_asys_roles.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_roles_children.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_usertoken.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_record.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_recordgroup.xml"/>
<include relativeToChangelogFile="true" file="data/insert_asys_aliasconfig.xml"/>
<include relativeToChangelogFile="true" file="data/insert_asys_system.xml"/>
<include relativeToChangelogFile="true" file="data/insert_asys_permissionset.xml"/>
......
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="a.schindlbeck" id="55fc4812-a4b7-4a53-a369-8b644ec78cae">
<createTable tableName="ASYS_RECORD">
<column name="ID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_ASYS_RECORD_ID"/>
</column>
<column name="OBJECT_TYPE" type="VARCHAR(64)"/>
<column name="ROW_ID" type="CHAR(36)"/>
<column name="RECORDGROUP_ID" type="CHAR(36)"/>
</createTable>
</changeSet>
</databaseChangeLog>
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="a.schindlbeck" id="56a34dfc-3c0d-48e1-8890-31c0c93f1942">
<createTable tableName="ASYS_RECORDGROUP">
<column name="ID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_ASYS_RECORD_GROUP_ID"/>
</column>
<column name="USER_ID" type="CHAR(46)"/>
<column name="TITLE" type="VARCHAR(256)"/>
<column name="GROUP_TYPE" type="VARCHAR(64)"/>
</createTable>
</changeSet>
</databaseChangeLog>
......@@ -1102,6 +1102,10 @@
<onActionProcess>%aditoprj%/entity/Organisation_entity/entityfields/openlocation/onActionProcess.js</onActionProcess>
<iconId>NEON:TACKED</iconId>
</entityActionField>
<entityField>
<name>OBJECTTYPE</name>
<valueProcess>%aditoprj%/entity/Organisation_entity/entityfields/objecttype/valueProcess.js</valueProcess>
</entityField>
</entityFields>
<recordContainers>
<dbRecordContainer>
......
import("system.result");
result.string("Organisation");
\ No newline at end of file
......@@ -1266,6 +1266,10 @@
</entityParameter>
</children>
</entityProvider>
<entityField>
<name>OBJECTTYPE</name>
<valueProcess>%aditoprj%/entity/Person_entity/entityfields/objecttype/valueProcess.js</valueProcess>
</entityField>
</entityFields>
<recordContainers>
<dbRecordContainer>
......
import("system.result")
result.string("Person");
\ No newline at end of file
......@@ -19,6 +19,18 @@
<entityField>#ENTITY</entityField>
<informationField>COMMRESTRICTIONS_ACTIVE</informationField>
</cardViewTemplate>
<favoriteViewTemplate>
<name>Favorite</name>
<objectType>OBJECTTYPE</objectType>
<rowId>#UID</rowId>
<entityField>#ENTITY</entityField>
<title>favorites</title>
<devices>
<element>MOBILE</element>
<element>TABLET</element>
<element>DESKTOP</element>
</devices>
</favoriteViewTemplate>
<neonViewReference>
<name>2cb11b4e-dd8e-419b-8fff-ef0852ef2641</name>
<entityField>Communications</entityField>
......
......@@ -19,6 +19,18 @@
<entityField>#ENTITY</entityField>
<informationField>COMMRESTRICTIONS_ACTIVE</informationField>
</cardViewTemplate>
<favoriteViewTemplate>
<name>Favorites</name>
<objectType>OBJECTTYPE</objectType>
<rowId>#UID</rowId>
<entityField>#ENTITY</entityField>
<title>favorites</title>
<devices>
<element>MOBILE</element>
<element>TABLET</element>
<element>DESKTOP</element>
</devices>
</favoriteViewTemplate>
<neonViewReference>
<name>5a1b7683-2fec-4763-9b45-e4c7a18d70fd</name>
<entityField>Communications</entityField>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment