foalfetch/app/controllers/stories_controller.rb

9 lines
177 B
Ruby

class StoriesController < ApplicationController
def index
end
def show
@story = Story.find(params[:id])
@chapters = @story.chapters.order(number: :asc)
end
end