Initial commit
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
server.port=8105
|
||||
|
||||
# Enable all endpoints over HTTP
|
||||
management.endpoints.web.exposure.include=*
|
||||
management.endpoint.health.show-details=when_authorized
|
||||
|
||||
flowable.frontend.title=flowable-work
|
||||
|
||||
#spring.datasource.url=jdbc:h2:~/flowable-work-db/db;AUTO_SERVER=TRUE;DB_CLOSE_DELAY=-1
|
||||
#spring.datasource.username=flowable
|
||||
#spring.datasource.password=flowable
|
||||
|
||||
#Comment out and configure database
|
||||
spring.datasource.url=jdbc:postgresql://localhost:5435/flowable
|
||||
spring.datasource.username=flowable
|
||||
spring.datasource.password=flowable
|
||||
|
||||
# Local Elasticsearch config
|
||||
spring.elasticsearch.uris=http://localhost:9203
|
||||
|
||||
# spring.data.elasticsearch.repositories.enabled=true
|
||||
# spring.data.elasticsearch.cluster-nodes=localhost:9300
|
||||
# spring.data.elasticsearch.cluster-name=elasticsearch
|
||||
|
||||
flowable.indexing.index-name-prefix=flowable-work-
|
||||
#Disable ElasticSearch Indexing
|
||||
#flowable.indexing.enabled=false
|
||||
|
||||
# Enable Flowable Inspect
|
||||
flowable.inspect.enabled=true
|
||||
|
||||
# Forms will update even if an old process/case/task definition will be used
|
||||
flowable.platform.enable-latest-form-definition-lookup=true
|
||||
|
||||
# Server URL for REST calls
|
||||
baseUrl=http://localhost:8105
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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"]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user