Hi, I am trying to create a form that when submitted, adds the logged in user to a list of users connected to the record. These users are the "followers", "Followers" being a many to many connection field where any given record of my main table connects to various users. The idea is that these users will get updates on major changes to these records via email.
The problem is I do not want other people to be able to add another user as a follower and therefore spam them with unwanted emails. The idea is to create an edit record form with no fields and change the submit button to say "follow". Then the record rules will update the record and change the many to many field to include the user who submitted the form. Right now though that user is replacing the current followers rather than having his name be added to the list.
Any ideas? Thanks