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
In order to find more people to play games with you, users should be able to post "advertisements". These are messages indicating they want to play a game and looking for people to play it with.
MVP
Simple object with the following properties:
User (Automatic)
Time of creation (Automatic)
Contact (Optional, String, stuff like discord, phone, email)
Game (String)
Message (String)
From the User object we can extract the Seat and other information we have from the user. The other fields are to be filled in by the requesting user. It's up to them how to fill it out, no restrictions on the format. Advertisements should expire after some hours (12 or so?)
Required endpoints
Something like /wtp or /lfp (want to play, looking for player)
POST: Create a new wtp-request GET: Get all WTP requests. DELETE /wtp/{id}: Remove wtp-request, can be done by user or admin PUT /wtp/{id}: Update wtp request, refresh created-on timestamp.
In the future this can be expanded by integrating with some fancy Discord bot to get people in touch easier. For now seating info and optional discord will do.
The text was updated successfully, but these errors were encountered:
In order to find more people to play games with you, users should be able to post "advertisements". These are messages indicating they want to play a game and looking for people to play it with.
MVP
Simple object with the following properties:
From the User object we can extract the Seat and other information we have from the user. The other fields are to be filled in by the requesting user. It's up to them how to fill it out, no restrictions on the format. Advertisements should expire after some hours (12 or so?)
Required endpoints
Something like
/wtp
or/lfp
(want to play, looking for player)POST
: Create a new wtp-requestGET
: Get all WTP requests.DELETE /wtp/{id}
: Remove wtp-request, can be done by user or adminPUT /wtp/{id}
: Update wtp request, refresh created-on timestamp.In the future this can be expanded by integrating with some fancy Discord bot to get people in touch easier. For now seating info and optional discord will do.
The text was updated successfully, but these errors were encountered: