Documentation Index
Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The default workflows in Atoti Sign-Off contain user tasks that let users save files at every point in the workflow. This includes when users:- publish or archive definitions
- request approval for tasks
- approve or reject tasks
Default behavior
By default, when a user saves an attachment, the files are saved in the system where Atoti Sign-Off is deployed, relative to the location of the executable starter jar. This is based on the value of thesign-off.workflow.file-storage-path property, which defaults to sign-off/workflow/attachments.
Then, if a user saves a file in a workflow action, Atoti Sign-Off will:
- Check if the folder specified by
sign-off.workflow.file-storage-pathexists. - If not, Atoti Sign-Off will create the folder.
- Atoti Sign-Off will save the file under a timestamped folder, to prevent unintended overwrites.
- The path of the file will be saved as a workflow variable for future retrieval.
Change the folder location
If you want to change the folder location, modify the value of thesign-off.workflow.file-storage-path
property. This value can be absolute or relative.
Customize the save mechanism
If you want to customize the save mechanism, add your own implementation ofIWorkflowFileStorageService and expose it as a Spring Bean.
IWorkflowFileStorageService
IWorkflowFileStorageService
FAQ
What should I do if Atoti Sign-Off says my file is too large?
What should I do if Atoti Sign-Off says my file is too large?
Large files can cause performance degradations on your server. To help prevent this, we impose that:
- Your file must not be larger than the value of the
spring.servlet.multipart.max-file-sizeproperty, which defaults to1MB. - Your request must not be larger than the value of the
spring.servlet.multipart.max-request-sizeproperty, which defaults to10MB.
application.yml.Why do I not have access to the attachment?
Why do I not have access to the attachment?
You may not have access to the folder where the attachments are saved. If so, please contact your
system administrator.