Class: Helios::Press::PostsController

Inherits:
Object
  • Object
show all
Defined in:
app/controllers/helios/press/posts_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



4
5
6
# File 'app/controllers/helios/press/posts_controller.rb', line 4

def index
  @posts = Post.published.reverse_sorted
end

#showObject



8
9
10
# File 'app/controllers/helios/press/posts_controller.rb', line 8

def show
  @post = Post.published.find_by!(slug: params[:slug])
end