Class: Helios::Press::PostsController
- Inherits:
-
Object
- Object
- Helios::Press::PostsController
- Defined in:
- app/controllers/helios/press/posts_controller.rb
Instance Method Summary collapse
Instance Method Details
#index ⇒ Object
4 5 6 |
# File 'app/controllers/helios/press/posts_controller.rb', line 4 def index @posts = Post.published.reverse_sorted end |
#show ⇒ Object
8 9 10 |
# File 'app/controllers/helios/press/posts_controller.rb', line 8 def show @post = Post.published.find_by!(slug: params[:slug]) end |