Files
fizzy/app/controllers/cards/previews_controller.rb
T
David Heinemeier Hansson 4ef46ccd19 Spacing
2025-04-13 08:10:47 +02:00

10 lines
235 B
Ruby

class Cards::PreviewsController < ApplicationController
include FilterScoped
before_action :set_filter, only: :index
def index
set_page_and_extract_portion_from @filter.cards, per_page: CardsController::PAGE_SIZE
end
end