You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fsmanuel edited this page Nov 29, 2010
·
4 revisions
To use your Devise Helpers, eg. current_user, user_signed_in?, etc, in your cells, just do
class TransactionWidget < Apotomo::Widget
include Devise::Controllers::Helpers
helper_method :current_user #all your needed helper
def foo
puts current_user
end
end