foalfetch/app/controllers/stories_controller.rb
2024-04-04 04:21:31 -04:00

10 lines
207 B
Ruby

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