How to get current_user when I'm in model

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

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

HOLY COW

how could I not figure that out :slight_smile:

thank you so much

On 24. Jan, 08:56 h., bala kishore pulicherla [email protected]