This commit is contained in:
r888888888
2014-05-22 17:51:43 -07:00
parent 714c752402
commit 6630bd9a41

View File

@@ -116,6 +116,7 @@ class PostsController < ApplicationController
def random
count = Post.fast_count(params[:tags])
@post = Post.tag_match(params[:tags]).offset(rand(count)).first
raise ActiveRecord::RecordNotFound if @post.nil?
redirect_to post_path(@post, :tags => params[:tags])
end