Guest User

Untitled

a guest
Mar 14th, 2015
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Company < ActiveRecord::Base
  2. has_one :logo_attachment, as: :attachable
  3.  
  4. ...
  5.  
  6. def logo_url
  7. attachment = logo_attachment
  8. attachment ? attachment.file.url : ''
  9. end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment