Ask A Question
Notifications
You’re not receiving notifications from this thread.
Personal records
Hello! How to create an entry for each user? But only those creators can see these records
You need to scope it to currently logged in user. if you use Devise you can use something like current_user.personal_record
. This can be done in the controller's "set" before_action, or in the preferred action, eg index, show, etc