mattvanhorn/BJJLife

View on GitHub
app/controllers/blogs_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class BlogsController < ApplicationController
  expose(:blog){ Blog.first }

  def show
    exhibit_exposed :blog
  end

end