You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<description>Microflow that will be called to determine if a file is accepted. If not, it should return a false. The Dropzone will remove the file by itself. This microflow will use the entity defined in 'Data'.
89
89
90
-
Note: This microflow is executed AFTER the file is uploaded. When doing big uploads, it is better to maybe also add a 'beforeAccept Nanoflow'.</description>
90
+
Note: This microflow is executed AFTER the file is uploaded. When doing big uploads, it is better to maybe also add a verification before upload.</description>
91
91
<returnTypetype="Boolean" />
92
92
</property>
93
93
</propertyGroup>
94
+
</propertyGroup>
95
+
<propertyGroupcaption="Verification before upload">
<description>This entity is used to verify the file BEFORE it is uploaded to the server. The widget will create an object and add the defined attributes. After the 'beforeAccept Microflow/Nanoflow' returns a true (boolean) value, the file itself will be committed and uploaded.
99
+
<description>This entity is used to verify the file BEFORE it is uploaded to the server. The widget will create an object and add the defined attributes. After the 'beforeAccept Microflow/Nanoflow' returns an empty string value (this is the error message, empty when no error occurred), the file itself will be committed and uploaded.
98
100
99
-
Note: Only non-persistent entities are accepted.
101
+
Note 1: Only non-persistent entities are accepted, as the widget will create/delete the object itself.
102
+
Note 2: For this non-persistent entity, when applying Entity Access, give everyone permissions to create/delete this object, and read/write access on any attributes.
103
+
Note 3: To avoid any other problem, make sure this helper object is detached from any other objects. It should be standalone and have zero references to others.
100
104
</description>
101
105
</property>
102
106
</propertyGroup>
@@ -124,7 +128,7 @@ Note: Only non-persistent entities are accepted.
0 commit comments