I've recently installed Devise on a rails application, and I am wondering if it is possible to get an instance of the currently logged in user in either one of the other models or controllers, and if so, how do I do that?
|
|
|
Devise creates convenience methods on the fly that represent your currently logged user. However you should note that the generated method name includes the class name of your user model. e.g. if your Devise model is called ' There are a number of other methods created with similar conventions, for example ' These methods are available in controllers and views so you might have the following in a view:
Finally, if you are using two or more Devise models in your app (e.g. User and Admin), you can use the '
Update: Since Devise version 1.2.0, ' |
||||
|
|
|
The Devise helper methods are only available at the controller and view layers. They are not available at the model layer (see Controller filters and helpers section of README).
It is not possible via the default helper methods that Devise creates for you. However, there are many alternative methods you can use to provide the
Yes it is possible. Use |
||||
|
|
|
Pass it in as a parameter to the method call :). One idea is to use Those solutions are really just covering up for a lack of good design logic. |
|||
|
|