Initial commit

This commit is contained in:
Andreas Isler
2026-05-22 14:59:58 +02:00
commit 2f9c0a5c9e
130 changed files with 13126 additions and 0 deletions
@@ -0,0 +1,48 @@
[
{
"key": "all",
"labelKey": "contacts.filter.all",
"defaultLabel": "All",
"parameters": {}
},
{
"key": "internal",
"labelKey": "contacts.filter.internal",
"defaultLabel": "Internal",
"parameters": {
"must": {
"type": "default"
}
}
},
{
"key": "external",
"labelKey": "contacts.filter.external",
"defaultLabel": "External",
"parameters": {
"must" : {
"type": "external"
}
}
},
{
"key": "active",
"labelKey": "contacts.filter.active",
"defaultLabel": "Active",
"parameters": {
"must" : {
"state": "ACTIVE"
}
}
},
{
"key": "inactive",
"labelKey": "contacts.filter.inactive",
"defaultLabel": "Inactive",
"parameters": {
"must" : {
"state": "INACTIVE"
}
}
}
]
@@ -0,0 +1,21 @@
{
"name": "Flowable",
"groups": [
{ "key": "flowableUser", "name": "Flowable User" },
{ "key": "flowableAdministrator", "name": "Flowable Administrator" }
],
"users": [
{
"firstName": "Flowable",
"lastName": "Admin",
"login": "admin",
"email": "test@demo.flowable.io",
"language": "en",
"theme": "flowable",
"userDefinitionKey": "user-admin"
}
]
}
@@ -0,0 +1,67 @@
[
{
"key": "user-default",
"name": "Default user",
"description": "Creates a new, non-specific user where the member groups can be freely chosen.",
"initialState": "ACTIVE",
"initialSubState": "ACTIVE",
"forms": {
"init": "F01_userInitFormDefault",
"view": "F02_userViewFormDefault",
"edit": "F03_userEditFormDefault"
},
"memberGroups": [
"flowableUser"
],
"lookupGroups":[
"flowableUser"
],
"actionPermissions": {
"create": [ "flowableAdministrator" ],
"edit": [ "flowableAdministrator" ],
"deactivate": [ "flowableAdministrator" ],
"activate": [ "flowableAdministrator" ]
},
"contactFilters": [ "all" ],
"allowedFeatures": [ "contacts", "bubbles", "markdownInput", "replyToMessage", "forwardMessage", "reactToMessage", "fileUpload", "work", "createWork",
"personalAccessTokens",
"tasks", "documents", "changeOwnPassword", "changeOwnTheme", "editOwnAvatar"]
},
{
"key": "user-admin",
"name": "Administration User",
"description": "Creates a new, administration user.",
"initialUserSubType": "admin",
"initialState": "ACTIVE",
"initialSubState": "ACTIVE",
"forms": {
"init": "F01_userInitFormDefault",
"view": "F02_userViewFormDefault",
"edit": "F03_userEditFormDefault"
},
"memberGroups": [
"flowableUser",
"flowableAdministrator"
],
"lookupGroups":[
"flowableUser"
],
"actionPermissions": {
"create": [ "flowableAdministrator"],
"edit": [ "flowableAdministrator" ],
"deactivate": [ "flowableAdministrator" ],
"activate": [ "flowableAdministrator" ]
},
"initialVariables": {
"adminUser": true,
"description": "Admin"
},
"contactFilters": [ "all", "internal", "external", "inactive"],
"allowedFeatures": [ "contacts", "createUser", "reports",
"actuators", "user-mgmt", "search-api", "workobject-api", "templateManagement",
"markdownInput", "replyToMessage", "forwardMessage", "reactToMessage", "fileUpload", "work", "createWork", "tasks", "documents",
"impersonateUser",
"personalAccessTokens",
"changeOwnPassword", "changeOwnTheme", "editOwnAvatar", "themeManagement"]
}
]