Skip to content

Instantly share code, notes, and snippets.

@aguilarsoto
Created September 1, 2010 16:15
Show Gist options
  • Save aguilarsoto/560940 to your computer and use it in GitHub Desktop.
Save aguilarsoto/560940 to your computer and use it in GitHub Desktop.
user_controller.rb
def show
respond_to do |format|
format.json { render :json => @user.to_json(:method => [:avatar_url])}
end
end
user.rb
def self.avatar_url
self.avatar.url
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment