Created
February 20, 2019 01:49
-
-
Save abaldwin88/4f74aa09788e4a1a4aec4c28a55648e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@posts = Post.search_by_title(search_param).default_order | |
@posts = @posts.select do |post| | |
(post.author == selected_author || any_author?) && (post.published? || current_admin) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment