Guest User

Untitled

a guest
Jul 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Version
  2.  
  3. named_scope :drafts, :conditions => { :draft => true }
  4. named_scope :published, :conditions => { :draft => false }
  5.  
  6. end
  7.  
  8. Version.drafts # all drafts
  9. Version.published # all published
Add Comment
Please, Sign In to add comment