Database problem

On my application I want each authenticated user to be able to :

  • Create/edit/delete a new product with all the associated information
  • See the list of products of other users

On the other hand, I want the creator of the product to be the only one who can edit the information of his product

Do you have any idea how to do this on Glide?

When a record is created, save either the email address or UserID of the user that created it as part of the record. And then when you enable editing, add a condition that only allows the record creator to edit it.