neverstopbuilding/dropblog

View on GitHub
app/controllers/projects_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ProjectsController < ApplicationController
  layout 'page'

  def index
    @projects = Project.order(updated_at: :desc)
  end

  def show
    @project = Project.find_by_slug(params[:id])
  end
end