simeonwillbanks/mygists

View on GitHub
app/controllers/profile_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ProfileController < ApplicationController

  load_resource singleton: true, find_by: :username, id_param: :username

  expose(:profile) { @profile.decorate }

  def show
    respond_to { |format| format.html }
  end
end