neverstopbuilding/dropblog

View on GitHub
app/controllers/visitors_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class VisitorsController < ApplicationController
  def index
    @articles = Article.recently_updated(5)
    @projects = Project.recently_updated(5)
  end

  def prototyping
    render layout: 'page'
  end
end