Aditya Hadi
Aditya Hadi

Reputation: 384

CakePHP ACL-like plugin for Ruby on Rails

Is there any CakePHP ACL-like plugin for Rails?

Upvotes: 1

Views: 444

Answers (1)

markquezada
markquezada

Reputation: 8535

Although I'm not directly familiar with CakePHP's ACL functionality, you might want to check out CanCan by Ryan Bates:

CanCan is an authorization library for Ruby on Rails which restricts what resources a given user is allowed to access. All permissions are defined in a single location (the Ability class) and not duplicated across controllers, views, and database queries.

Upvotes: 1

Related Questions