projects_controller.rb 195 B

12345678
  1. class ProjectsController < ApplicationController
  2. def index
  3. @projects = Project.all
  4. end
  5. def show
  6. @project = Project.where(permalink: params[:permalink])[0]
  7. end
  8. end