in app/controllers/data_bundles_controller.rb [48:57]
def create
@data_bundle = current_user.databundles.new(data_bundle_params)
if @data_bundle.save
redirect_to @data_bundle, notice: 'Data bundle was successfully created.'
else
render :edit
end
end