Skip to content

Instantly share code, notes, and snippets.

@PrimeTimeTran
Created May 29, 2018 12:55
Show Gist options
  • Save PrimeTimeTran/9924674dd2ea2f860d6b0e9b67ce3bd8 to your computer and use it in GitHub Desktop.
Save PrimeTimeTran/9924674dd2ea2f860d6b0e9b67ce3bd8 to your computer and use it in GitHub Desktop.
class UserDecorator < Draper::Decorator
# code
def most_recent_profile_photo
if object.uploads.present?
object.uploads.where('stage_id IS null').select { |upload| upload.uploadable_type == 'ProfilePhoto' }.last.media.service_url || ''
else
'https://cdn1.iconfinder.com/data/icons/business-charts/512/customer-512.png'
end
end
end
@jagdeepsingh
Copy link

You can replace ...last.media.service_url || '' with ...last.media.service_url.to_s

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment