-
-
Save radar/3944691 to your computer and use it in GitHub Desktop.
Name scope use self.id
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
class Discount < ActiveRecord::Base | |
def unused | |
self.orders. | |
where(:state => ['shipped', 'paid', 'completed', 'processing']). | |
where(:user_id => user.id). | |
count | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment