thirteen-tien-len/app/controllers/visitors_controller.rb
2023-12-06 13:03:36 +00:00

14 lines
286 B
Ruby

class VisitorsController < ApplicationController
before_action :skip_authorization
def index
@doodads = authorize policy_scope(Doodad)
@canisters = authorize Canister.all
@feed_items = current_user.feed.paginate(page: params[:page])
end
def games_index
end
end