Hello,
I have two models: (1) Task, and (2) CompletedTask.
I'm looking to do a named_scope for :incomplete_tasks (tasks that don't have any entries in the completed_tasks table)
I'm thinking it would be something like this in my Task model:
named_scope :incomplete_tasks, :conditions => **completed_tasks.empty?**
Do you know how I find all incomplete tasks correctly?