Files
fizzy/app/controllers/cards/previews_controller.rb
T
2025-04-10 15:09:56 +02:00

9 lines
234 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