Advertisement
NameL3ss

rangos de tiempos

Mar 24th, 2021
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. def valid_start_work_time?
  2. return false unless valid_work_time? && valid_spare_time?
  3.  
  4. errors.add(:spare_time, 'error generico numero 1') if work_time.first >= spare_time.first
  5. return true
  6. end
  7.  
  8. def valid_end_work_time?
  9. return false unless valid_work_time? && valid_spare_time?
  10.  
  11. errors.add(:spare_time, 'error generico numero 2') if work_time.last <= spare_time.last
  12. return true
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement