Files
fizzy/app/controllers/cards/previews_controller.rb
Jorge Manrubia d6c7fb2084 Remove unused constants / controller
This came from the previous 3-column times
2025-10-25 18:50:37 +02:00

10 lines
197 B
Ruby

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