permissions - ACL on field level in Grails -


In our new software project, we have the following requirements: A webpage will show a set of data. This data is editable by some users (assigned to roles, i.e. manager) and will be viewable only by others. This difficult part has been described by an example:
The user page contains address data and account information. Adenas data will be editable by the user and the manager and will be viewable by all users, while the account information can only be viewed by the real user and the manager.

I have read a lot of information about Spring Security. It provides a great framework to allow URLs and methods and even on domain classes. But I need field level ACL.

So, the question is how to solve this problem using Grails?

Thank you very much,

<<>

itemproc = "Text">

Spring Protection (Asegi Plugin) is definitely a way to go with Grails.

You can use one that will allow a page to isolate for different roles such as:

   

Comments