Created
October 31, 2016 18:38
-
-
Save filipebarcos/6d383ff47013ec0443ed830163805f2c 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
class Project < ActiveRecord::Base | |
has_many :time_entries | |
has_many :unbilled_time_entries, -> { unbilled }, class_name: 'TimeEntry' | |
end |
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 TimeEntry < ActiveRecord::Base | |
scope :unbilled, -> { where(status: Status::UNBILLED) } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment