Skip to content

Commit

Permalink
AAE-30045 Remove unused default apps (#10543)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalszmit authored Jan 13, 2025
1 parent 1b3a29f commit 8d157c2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 69 deletions.
Binary file removed e2e/resources/activiti7/candidatebaseapp.zip
Binary file not shown.
Binary file removed e2e/resources/activiti7/subprocessapp.zip
Binary file not shown.
69 changes: 0 additions & 69 deletions lib/cli/scripts/resources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,75 +19,6 @@
/* eslint-disable @typescript-eslint/naming-convention */

export const ACTIVITI_CLOUD_APPS: any = {
SUB_PROCESS_APP: {
name: 'subprocessapp',
file_location: (TAG = 'develop') =>
`https://github.com/Alfresco/alfresco-ng2-components/blob/${TAG}/e2e/resources/activiti7/subprocessapp.zip?raw=true`,
processes: {
processchild: 'processchild',
processparent: 'processparent'
},
security: [
{ role: 'APPLICATION_MANAGER', groups: [], users: ['manageruser'] },
{ role: 'ACTIVITI_ADMIN', groups: [], users: ['superadminuser'] },
{ role: 'ACTIVITI_USER', groups: ['hr', 'testgroup'], users: ['hruser'] }
],
variables: {
'process-runtime-service': {
ALFRESCO_PROCESS_TASKEMAIL_ENABLED: false
}
}
},
CANDIDATE_BASE_APP: {
name: 'candidatebaseapp',
file_location: (TAG = 'develop') =>
`https://github.com/Alfresco/alfresco-ng2-components/blob/${TAG}/e2e/resources/activiti7/candidatebaseapp.zip?raw=true`,
processes: {
candidateUserProcess: 'candidateuserprocess',
candidateGroupProcess: 'candidategroupprocess',
anotherCandidateGroupProcess: 'anothercandidategroup',
uploadFileProcess: 'uploadfileprocess',
processwithstarteventform: 'processwithstarteventform',
processwithjsonfilemapping: 'processwithjsonfilemapping',
assigneeProcess: 'assigneeprocess',
errorStartEventProcess: {
process_name: 'errorstartevent',
error_id: 'Error_END_EVENT',
error_code: '123'
},
errorBoundaryEventProcess: {
process_name: 'errorboundaryevent',
error_id: 'Error_END_EVENT',
error_code: '567'
},
errorExclusiveGateProcess: {
process_name: 'errorexclusivegate',
error_id: 'Error_OK',
error_code: '200'
}
},
forms: {
starteventform: 'starteventform',
formtotestvalidations: 'formtotestvalidations',
uploadfileform: 'uploadfileform',
inputform: 'inputform',
outputform: 'outputform'
},
security: [
{ role: 'APPLICATION_MANAGER', groups: [], users: ['manageruser'] },
{ role: 'ACTIVITI_ADMIN', groups: [], users: ['superadminuser', 'processadminuser'] },
{ role: 'ACTIVITI_USER', groups: ['hr', 'testgroup'], users: ['hruser', 'salesuser'] }
],
tasks: {
uploadFileTask: 'UploadFileTask',
candidateUserTask: 'candidateUserTask'
},
variables: {
'process-runtime-service': {
ALFRESCO_PROCESS_TASKEMAIL_ENABLED: false
}
}
},
SIMPLE_APP: {
name: 'simpleapp',
file_location: (TAG = 'develop') =>
Expand Down

0 comments on commit 8d157c2

Please sign in to comment.