Created
August 10, 2021 00:52
-
-
Save nfriend21/a96be6273905c43d6cc6038715ed9ff7 to your computer and use it in GitHub Desktop.
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
#### OLD | |
def passes_budget? | |
if cbt_is_photographer? | |
if budget_okup? | |
true | |
else | |
false | |
end | |
else | |
if budget_betterup? || ( budget_okup? && (sold_plenty_art_before? || has_existing_website?) ) | |
true | |
else | |
false | |
end | |
end | |
end | |
#### NEW | |
def passes_budget? | |
if budget_betterup? | |
true | |
elsif budget_okup? && has_existing_website? && has_sold_art_before? | |
true | |
else | |
false | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment