Pergunta

Is there a way to have with_permissions_to in a single place globally so that it applies to EVERY finder method of all models.

Actually, I have very big application and just added this plug-in for authorization. I don't want to use with_permissions_to with every find method for all models.

Thanks, Imran

Foi útil?

Solução

Try adding:

default_scope { with_permissions_to(:read) }

to your models

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top