foalfetch/app/controllers/chapters_controller.rb
2024-07-30 13:44:41 -04:00

11 lines
292 B
Ruby

# frozen_string_literal: true
require 'redcarpet'
class ChaptersController < ApplicationController
def show
@story = Story.find(params[:story_id])
@chapter = @story.chapters.find_by(number: params[:id])
@rendered_html = Ebook::EpubGenerator.render_chapter(@chapter)
end
end