tadyjp/rendezvous

View on GitHub
app/controllers/flow_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class FlowController < ApplicationController
  def show
    @posts = Post.includes(:tags, :author).where(is_draft: false).order(updated_at: :desc).page(params[:page]).decorate
  end
end