-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #766 from adobecom/MWPW-156303_prework
MWPW-156303
- Loading branch information
Showing
3 changed files
with
155 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const LIMITS = { | ||
fillsign: { | ||
maxFileSize: 100000000, // 1 MB | ||
acceptedFiles: ['application/pdf'], | ||
maxNumFiles: 1, | ||
}, | ||
'delete-pages': { | ||
maxFileSize: 100000000, // 1 MB | ||
acceptedFiles: ['application/pdf'], | ||
maxNumFiles: 1, | ||
}, | ||
'number-pages': { | ||
maxFileSize: 100000000, // 1 MB | ||
acceptedFiles: ['application/pdf'], | ||
maxNumFiles: 1, | ||
}, | ||
'compress-pdf': { | ||
maxFileSize: 100000000, | ||
acceptedFiles: ['application/pdf'], | ||
maxNumFiles: 1, | ||
}, | ||
}; | ||
|
||
export default LIMITS; |