app/helpers/hydra_uploader_helper.rb in hydra-head-3.1.0.pre5 vs app/helpers/hydra_uploader_helper.rb in hydra-head-3.1.0.rc1
- old
+ new
@@ -1,18 +1,4 @@
module HydraUploaderHelper
-
- # Generate the appropriate url for posting uploads to
- # Uses the +container_id+ method to figure out what container uploads should go into
- def upload_url
- upload_url = asset_file_assets_path(:asset_id=>container_id)
- end
-
- # The id of the container that uploads should be posted into
- # If params[:container_id] is not set, it uses params[:id] (assumes that you're uploading items into the current object)
- def container_id
- if !params[:asset_id].nil?
- return params[:asset_id]
- else
- return params[:id]
- end
- end
+ include Hydra::HydraUploaderHelperBehavior
end
+