framallo/movies-with-neo4j

View on GitHub
app/controllers/people_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PeopleController < ApplicationController
  def index
    @people = Person.all
    @movies_by_people = Person.movies_by_people
  end

  def show
    @person = Person.find_by(name: params[:name])
  end
end