Skip to content
Snippets Groups Projects
Commit 785d502c authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

fix Scanservice Warnings

parent 8a39301f
No related branches found
No related tags found
No related merge requests found
......@@ -8506,7 +8506,6 @@
<idColumn>DOCUMENTTEMPLATELINKID</idColumn>
<idGeneratorType v="0" />
<idGeneratorInterval v="1" />
<documentation>%aditoprj%/aliasDefinition/Data_alias/aliasdefinitionsub/entitygroup/entities/documenttemplatelink/documentation.adoc</documentation>
<title></title>
<description></description>
<auditSyncConfig>
......
This group has no roles assigned to make it invisible. It is still required, because the QuickEntry context could not show up otherwise.
\ No newline at end of file
......@@ -15,7 +15,6 @@
</siblings>
<grantUpdate v="false" />
<grantDelete v="false" />
<metadata>%aditoprj%/entity/360Degree_entity/metadata.js</metadata>
<recordContainer>jdito</recordContainer>
<entityFields>
<entityProvider>
......
......@@ -2,6 +2,7 @@
<entity xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.3.17" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/entity/1.3.17">
<name>UserhelpResources</name>
<majorModelMode>DISTRIBUTED</majorModelMode>
<documentation>%aditoprj%/entity/UserhelpResources/documentation.adoc</documentation>
<entityFields>
<entityProvider>
<name>#PROVIDER</name>
......
......@@ -67,6 +67,11 @@ LiquiUtils.exportAllTablesAsLiquibaseFiles = function(pOutFolderPath, pAuthor, p
* @param {Boolean} [pIncludeClearTableDirective=false] if true, a delete element is added at the beginning of the changeset for the table
* @param {String} [pAlias=current db-alias] alias where the data will be loaded from
* @param {Boolean} [pGenerateChangeSetIdFromArguments=false] if true the id of the changeset will be generated by the passed arguments to this function
* @param {function} [pBlobCallbackFn=undefined] function that returns the filename for a stored file (only for BLOB-databasetypes). <br/>
* if nothing is specified, the filename is generated automatically with a hash of the content <br />
* The callback function retrieves all the arguments of the LiquiXTable.prototype.addBlobCol-function
* @param {String} [pFileName=«pTableName».xml] name of the changelog file (without the .xml extension) <br/>
* If nothing is specified the file is named based on the tablename that is exported
*
* @return {Object} returns an object that has currently only one property<br/>- exported:boolean if the table has been exported or not
*/
......@@ -97,6 +102,9 @@ LiquiUtils.exportTableAsLiquibaseFiles = function(pPath, pTableName, pColumns, p
* @param {Boolean} [pIncludeClearTableDirective=false] if true, a delete element is added at the beginning of the changeset for the table
* @param {String} [pAlias=current db-alias] alias where the data will be loaded from
* @param {Boolean} [pGenerateChangeSetIdFromArguments=false] if true the id of the changeset will be generated by the passed arguments to this function
* @param {function} [pBlobCallbackFn=undefined] function that returns the filename for a stored file (only for BLOB-databasetypes). <br/>
* if nothing is specified, the filename is generated automatically with a hash of the content <br/>
* The callback function retrieves all the arguments of the LiquiXTable.prototype.addBlobCol-function
*
* @return {String} the liquibase-changest in xml-form
*/
......
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