PEC-CSS / acm-website-backend

Backend of the official website of PEC ACM CSS
MIT License
18 stars 2 forks source link

Fixing /events/{eventId}/users #72

Closed harshjohar closed 8 months ago

harshjohar commented 8 months ago

Get all the users concerned with the given event.

Response Object

{
    "participants":[
        {
            "id": userId,
            "email": userEmail,
            "name": userName,
            "photoUrl": userDp
        }
    ],
    "contributors":[
        {
            "id": userId,
            "email": userEmail,
            "name": userName,
            "photoUrl": userDp
        }
    ],
    "publicity":[
        {
            "id": userId,
            "email": userEmail,
            "name": userName,
            "photoUrl": userDp
        }
    ],
}