Replies: 2 comments 23 replies
-
I think @kotaaaa 's way sounds good. |
Beta Was this translation helpful? Give feedback.
23 replies
-
After discussing verbally, we reached the following conclusions regarding the invitation links:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Agenda
In this system, to share the container, the user needs to invite other users into the group. In this discussion, decide how to invite other users into the user's group.
For now, @kotaaaa suggested the following process:
Let's say user A tries to share the group with user B.
First, the Frontend accesses the '/group/{groupId}/share' API. Then it API returns Hash data that is generated by some logic within the Backend.
-> User A gets a link address, like https://{nishiki-domain}/json/{hashValue}.
-> User A shares that link with User B.
-> User B accesses that link.
-> Inside the Frontend used by User B calls Backend API, /groups/{groupId}/join/{hashValue}.
-> Then User B joining the group is accomplished.
Beta Was this translation helpful? Give feedback.
All reactions