gitlink-forgeplus/app/controllers/topic/cards_controller.rb

6 lines
120 B
Ruby

class Topic::CardsController < Topic::BaseController
def index
@cards = kaminari_paginate(Topic::Card)
end
end