0
I am planning the architecture of a personal project to be implemented using Rails. In it, I wish it was possible to easily modify the access rules of users, as is done in wordpress. I know there is cancan to do this, but I believe it would not serve my need. It is a service-oriented application. Each user will be allowed access only to certain services. I thought about implementing a solution of mine, specific to this need, that allows the application administrator to easily modify the access permissions of users through an administrative interface. Someone would tell me a solution to this?
Why do you think Cancan won’t do? There is also https://github.com/elabs/pundit. Both can help to implement a solution p/ your need as they are very basic.
– GuiGS