Link a user to content via a link

Hello, I’m stuck. In my project, several people can reserve the same reservation, and after the reservation is completed, each participant can make a complaint.

So, when one makes a complaint, the other receives a link to go to the page and give their opinion.

How can I link this opinion to this person specifically, because others can also give their opinions?

It depends on how you’ve defined your DB schema.

If you have a datatype for storing those opinions, you can just add a new field called owner (User) and simply populate it at creation time.

You may use the ‘Created by’ field to refer someone’s opinion.

When using Created by field to account for ownership we are renouncing to ever changing ownership. One has to be aware of this.

Records created from DB or by an API workflow triggered by some other user will lead to ownership problems.

Sure but I’m assuming someone’s opinion would always stay linked to the very own user. I mean for what I understood of the question I cant see why this ownership would change to someone else since its linked to a personal opinion

Thank you, I will try

This topic was automatically closed after 70 days. New replies are no longer allowed.