Created
April 14, 2017 04:56
-
-
Save jmervine/4aafef3274882c81a2941daacb468d7b to your computer and use it in GitHub Desktop.
cool, but never used
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
scope :find_by_eamil, ->(email) do | |
# Search team. | |
teams = joins(:team).where(teams: { email: email }) | |
return teams unless teams.empty? | |
# Search user. | |
joins(:user).where(users: { email: email }) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment