0
你能幫我重構和DRY嗎?我沒有想法。謝謝。Rails,重構控制器
if request.xhr?
render :json => {
:status => true,
:location => root_url + "/projects",
:message => I18n.t("project.destroy")
}
else
flash[:notice] = I18n.t("project.destroy")
redirect_to :action => :index
end