William Yeung
William Yeung

Reputation: 10566

Rails ACL plugin that works with devise/warden?

As title, warden is very pluggable, I wonder if there is anything works with warden/devise?

Upvotes: 4

Views: 4058

Answers (4)

leenasn
leenasn

Reputation: 1486

I've also used CanCan with Devise. It requires very easy to setup and all your authorization logic resides in a single file, in that way its very modularized.

Upvotes: 1

Kevin Tsoi
Kevin Tsoi

Reputation: 1807

I used acl9 with Devise. https://github.com/be9/acl9

I needed to dynamically grant authorization at the object level, which I don't think you can do with CanCan.

Upvotes: 1

Arcath
Arcath

Reputation: 4391

I use http://github.com/ryanb/cancan with Devise, its great and requires very little setup, you only have to define the abilitys as CanCan defaults to using current_user for the logged in user, which devise provides.

Upvotes: 4

Josh Delsman
Josh Delsman

Reputation: 3042

You could try this, which might be able to work alongside:

http://railscasts.com/episodes/188-declarative-authorization

Upvotes: 0

Related Questions