Last active
August 29, 2015 14:04
-
-
Save thanhcuong1990/33ba823edd53f1b8c00c to your computer and use it in GitHub Desktop.
Fat model & Skinny controller examples
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_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