You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose the request contains a body with following data
unique ID of the user
unique ID of the event
Any optional field - queries regarding the event
You are supposed to make a view / function in backend for enabling the single click registration.
Means enrolling the student in that event.
Hint:
Have an events_enrolled field in user model that is array that appends the eventID everytime it is registered.
Have an users enrolled field in event which is again an array of objects that can add the user detail, their queries (if any) to it.
This function should not allow multiple registration of same person in same event.
The text was updated successfully, but these errors were encountered:
Suppose the request contains a body with following data
You are supposed to make a view / function in backend for enabling the single click registration.
Means enrolling the student in that event.
The text was updated successfully, but these errors were encountered: