in the user model

def my_works
   return works#(no need of return also )
end

in the controller
def find_works
@user = current_user or User.find_by_id(params[:id])
works = @user.my_works
puts works #(u'll get the works that are related to u)
end

On Sat, Jan 24, 2009 at 1:00 PM, zero0x <[email protected]> wrote:

>
> Hey there,
>
> I have restful_authentication. I can do this in my controller, view,
> etc
>
> current_user
>
> But I can't do it when I'm in model. I need to put it to model,
> because there's method like my_works - which finds all works of
> current user.
>
> Please help someone. Thank you
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to