How to order @project.tasks?

I can access my a project’s tasks by @project.tasks.
But how cam I order them by name?
Currently it orders by ‘id’

in model project.rb

has_many :task, :order => “name ASC”

On Thu, Sep 18, 2008 at 11:12 PM, Vapor …
<[email protected]

wrote:

I can access my a project’s tasks by @project.tasks.
But how cam I order them by name?
Currently it orders by ‘id’

Posted via http://www.ruby-forum.com/.


Emanuele T.
+1 (619) 549 3230
4955 Narragansett Ave Apt #9
San Diego Ca 92107-3157

That should be has_many :tasks

Be aware of correct pluralization on has_many.

Add :order in your has_many.

Something like this:

class Project < …
has_many :tasks, :order => “tasks.name ASC”

end

On Fri, Sep 19, 2008 at 8:12 AM, Vapor …