docbrown/app/controllers/profile_preview_cards_controller.rb
rhymes a118b9095a
Add JSON representation of Profile Preview Card info (#14296)
* Add tests and Railsify a few things

* Adds JSON representation of ProfilePreviewCardsController

* Load profile and setting eagerly

* Add profile preview card color
2021-07-21 16:23:54 +01:00

7 lines
161 B
Ruby

class ProfilePreviewCardsController < ApplicationController
layout false
def show
@user = User.includes(:profile, :setting).find(params[:id])
end
end