Use snake_case uniformly for all routes.

This commit is contained in:
Bart Kamphorst
2018-10-19 21:54:14 +02:00
parent 814caff755
commit 19751ec37f
4 changed files with 6 additions and 6 deletions
@@ -101,7 +101,7 @@
var id = fieldAttributes.id || 'upload';
var name = fieldAttributes.name || 'file';
var action = fieldAttributes.action || '/uploadFile';
var action = fieldAttributes.action || '/upload_file';
html += '<form method=post enctype="multipart/form-data" ' +
'action="' + action + '" ' + 'id="' + id + '">';