Hello!
I'm facing an issue with using devise_invitable in a multi-tenant application where users can belong to multiple organizations (through memberships). Specifically, I want to invite a user multiple times to different organizations. However, since devise_invitable stores all invitation information directly in the User model, a user can only be invited once, preventing them from receiving multiple invitations.
Would it be possible to enhance devise_invitable to support multiple invitations for a single user, perhaps by decoupling invitation data from the User model? Any guidance or suggestions on how to handle this within the current framework would also be appreciated.
Hello! I'm facing an issue with using devise_invitable in a multi-tenant application where users can belong to multiple organizations (through memberships). Specifically, I want to invite a user multiple times to different organizations. However, since devise_invitable stores all invitation information directly in the User model, a user can only be invited once, preventing them from receiving multiple invitations.
Would it be possible to enhance devise_invitable to support multiple invitations for a single user, perhaps by decoupling invitation data from the User model? Any guidance or suggestions on how to handle this within the current framework would also be appreciated.
Thank you!