For now so I could move forward with getting this project done today, I altered the summernote-upload.js file itself.
Changed this:
var accept = options.file.type == 'file' ? '*/*' : options.file.type + '/*';
To this:
var accept = options.file.type == 'file' ? '.pdf,.doc,.docx,.txt' : options.file.type + '/*';
I was then able to submit the form with the file types I wanted.
-Twitch