Skip to content

Instantly share code, notes, and snippets.

@thanhcuong1990
Last active August 29, 2015 14:04
Show Gist options
  • Save thanhcuong1990/33ba823edd53f1b8c00c to your computer and use it in GitHub Desktop.
Save thanhcuong1990/33ba823edd53f1b8c00c to your computer and use it in GitHub Desktop.
Fat model & Skinny controller examples
# posts_controller.rb
def index
@published_posts = Post.all_published
@unpublished_posts = Post.all_unpublished
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment