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
This commit was created on github.com and signed with GitHub’s verified signature.
The key has expired.
Upload Attachment feature & Improvements
Core Services API
Added ability for approvers to optionally upload an attachment to an approval request such as receipt or proof of delivery, etc. One can control various aspects of this feature by tenant such as:
Are users allowed to upload documents while performing approval action.
Are users required/mandated to upload documents while performing approval action.
If allowed, what are maximum number of documents that user can attach with the request.
If allowed, what is the maximum size of documents that user can attach with the request. Read More
Performance improvements.
Ability to control users from which domains can access Assent app.
Payload Receiver Service API
Performance improvements.
Web App
Added ability for approvers to optionally upload an attachment to an approval request such as receipt or proof of delivery, etc. One can control various aspects of this feature by tenant such as:
Are users allowed to upload documents while performing approval action.
Are users required/mandated to upload documents while performing approval action.
If allowed, what are maximum number of documents that user can attach with the request.
If allowed, what is the maximum size of documents that user can attach with the request. Read More
Configuration Changes
Added a key ‘WhitelistDomains’ in App Configuration to control users from which domains can access Assent app. Please refer Samples.
one should enter semicolon separated domain values to be whitelisted as below in values of the key ‘WhitelistDomains’ in App Configuration
@contoso.com;@abc.contoso.com
Two new keys are introduced to ApprovalTenantInfo to support and control ability to upload attachments:
IsUploadAttachmentsEnabled: This is a Boolean with default value false. To enable upload feature for particular tenant this key needs to be true.
AttachmentProperties: This is a json and helps control various aspects of this feature such as, what are maximum number of documents that user can attach with the request, allowed, what is the maximum size of documents that user can attach with the request etc.Read More.
These properties are added in Samples for reference.