foalfetch/app/controllers/chapters_controller.rb

6 lines
173 B
Ruby

class ChaptersController < ApplicationController
def show
@story = Story.find(params[:story_id])
@chapter = @story.chapters.find_by(number: params[:id])
end
end