Class: PostsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- PostsController
- Defined in:
- app/controllers/posts_controller.rb
Instance Method Summary collapse
Instance Method Details
#index ⇒ Object
12 13 14 15 16 17 |
# File 'app/controllers/posts_controller.rb', line 12 def index @posts = Post.all respond_to do |format| format.html # index.html.erb end end |