TODO List
Jump to Section
Entity tasks has the fields
author
created
due
done
.
# enforce correct authorship
Restrict on create tasks
enforce author = current_user.id
enforce created = now
.
# only access your own tasks
Restrict on read, modify and delete tasks
ensure record.author = current_user.id
.