docbrown/app/controllers/profile_preview_card_controller.rb

7 lines
139 B
Ruby

class ProfilePreviewCardController < ApplicationController
layout false
def show
@actor = User.find_by(id: params[:id])
end
end