redirect upload to post page on success

This commit is contained in:
albert
2013-02-21 14:03:22 -05:00
parent 73cce49fb0
commit 94683cc82e

View File

@@ -22,7 +22,13 @@ class UploadsController < ApplicationController
def show
@upload = Upload.find(params[:id])
respond_with(@upload)
respond_with(@upload) do |format|
format.html do
if @upload.is_completed? && @upload.post_id
redirect_to(post_path(@upload.post_id))
end
end
end
end
def create