I'm using cancan and cells gems in my ruby-on-rails project. How to access can? method from within cell? Thanks.

link|improve this question
feedback

1 Answer

I've had to do exactly this. Try

class MyCell < Cell::Rails

  include CanCan::ControllerAdditions

end                                        

If you're also using Devise, I had to do this:

class MyCell < Cell::Rails

  include CanCan::ControllerAdditions
  include Devise::Controllers::Helpers
  Devise::Controllers::Helpers.define_helpers(Devise::Mapping.new(:user, {}))

end                                        

HTH

link|improve this answer
hi qnm! what is the last define_helpers part needed for? – dgilperez Mar 20 at 0:37
feedback

Your Answer

 
or
required, but never shown

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