class ChaptersController < ApplicationController

  def list
    @chapters = Chapter.find(:all).map {|c| [c.title,c.recipe_count]}
  end
end