Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I go about accessing Devises 'current_user' object inside of a model? I want to automatically append the current users id to a record when they create something. I know that I can manually set the user_id inside of the controller but I feel it would be easier/cleaner if it was handled by the model.

share|improve this question

1 Answer

up vote 27 down vote accepted

Essentially, this kind of logic doesn't belong in a Model, so you're best to pass it in through a function or on creation. This answer sums it up.

I know, I know, that's not the answer you wanted. Unfortunately, it may be cleaner looking to you, but it adds overhead to your model that you really don't want.

share|improve this answer
1  
And to whomever downvoted my answer, you can find the answer you seek and create the extra overhead for the minor inconvenience of passing current_user. – Kelly Jun 14 '12 at 17:16
1  
Here's an up arrow to negate that silly misuse of a down arrow! Cheers – KingThaleus Aug 17 '12 at 10:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.