7 lines
139 B
Ruby
7 lines
139 B
Ruby
class ProfilePreviewCardController < ApplicationController
|
|
layout false
|
|
|
|
def show
|
|
@actor = User.find_by(id: params[:id])
|
|
end
|
|
end
|