discourse/app/controllers/uploads_controller.rb

13 lines
448 B
Ruby
Raw Normal View History

2013-02-05 13:16:51 -06:00
class UploadsController < ApplicationController
2013-04-02 18:17:17 -05:00
before_filter :ensure_logged_in
2013-02-05 13:16:51 -06:00
def create
2013-04-02 18:17:17 -05:00
requires_parameter(:topic_id)
2013-02-05 13:16:51 -06:00
file = params[:file] || params[:files].first
2013-04-07 10:52:46 -05:00
# only supports images for now
return render status: 415, json: failed_json unless file.content_type =~ /^image\/.+/
upload = Upload.create_for(current_user.id, file, params[:topic_id])
2013-02-05 13:16:51 -06:00
render_serialized(upload, UploadSerializer, root: false)
end
end