summaryrefslogtreecommitdiff
path: root/application.rb
diff options
context:
space:
mode:
Diffstat (limited to 'application.rb')
-rw-r--r--application.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/application.rb b/application.rb
index 2e058bb..328384a 100644
--- a/application.rb
+++ b/application.rb
@@ -251,6 +251,9 @@ post '/models' do # create a new model
if @dataset.metadata[OT.Errors]
raise "Incorrect file format. Please follow the instructions for #{link_to "Excel", "/help"} or #{link_to "CSV", "/help"} formats."
end
+ when ".sdf"
+ sdf = params[:file][:tempfile].read
+ @dataset.load_sdf(sdf, subjectid)
else
raise "#{params[:file][:filename]} has an unsupported file type."
end