Created
December 26, 2015 13:54
-
-
Save jagdeepsingh/00d8f5fc907949415a59 to your computer and use it in GitHub Desktop.
Define a helper in rails
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
module ReservationHelper | |
def show_advanced_num_people_fields?(reservation) | |
show_num_people_senior?(reservation) || | |
show_num_people_child?(reservation) || | |
show_num_people_baby?(reservation) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment