Created
May 29, 2018 12:55
-
-
Save PrimeTimeTran/9924674dd2ea2f860d6b0e9b67ce3bd8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can replace
...last.media.service_url || ''
with...last.media.service_url.to_s