Here is the problem: I have a model called invite
and a model called person
. An invite is associated to a person and a person only and it has a field called status
.
How can I send generate a url that I can then send to the person
through an email so that if they click they can confirm availability to the invite
and update the status
.
I am thinking about using the UUID
of the invite
and adding a line on the urls.py
calling a view that updates the status of the invite with uuid
.
But I wonder if there is a better way that doesn't expose the UUID.