Grails : 3.3.0 Spring Security : 3.2.0.M1
I have done some research on this and I have found out that answer from (Seeing only your own data in Grails) post might be the answer I am looking for, but somehow it doesn't work.
This is how I capture the logged-in user and try to filter out and just to let logged-in user to view his own data. (This is my Task controller) By the way what is the use of [tasks:tasks]
def index(Integer max) {
def authenticated = getAuthenticatedUser().username
def tasks = User.findAllByUsername(authenticated)
[tasks: tasks]
params.max = Math.min(max ?: 10, 100)
respond Task.list(params), model:[tasks: Task.count()]
}
This is my Task domain
class Task {
transient springSecurityService
String task
Project project
Pic picName
static hasMany = [subTask:Subtask]
static belongsTo =[Project,Pic,User]
}
Please give me some suggestion or please let me know where did I make mistake! Thanks in advance! Best Regards, Hee
I have done by calling out "tasks" at gsp. It's working for me
Then I just call out from my domain class ${tasks}