Guest User

Untitled

a guest
Sep 19th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Workout
  2. ...
  3.  
  4. enum status: [:needs_revision, :complete]
  5. property :status, default: :complete
  6. scope :complete, -> { where(status: :complete) }
  7. scope :needs_revision, -> { where(status: :needs_revision) }
  8.  
  9. ...
  10. end
Add Comment
Please, Sign In to add comment