-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Milestone
Description
- Create an activity that will display all the teams you're in. You need to make a POST request to '/myTeams' with just one parameter and that will return JSON
- Personal uuid (uuid)
- Create an activity that will display all the teams with open registration. You need to make a GET request to '/browseTeams' that will return JSON
- Create an activity to join a team where you enter the team id and a submit button. Once the submit button is pressed it will make a POST request to '/joinTeam' with the following parameters:
- Personal uuid (uuid)
- Team ID (tID)
It will return:
- 'success' if the user has an invitation to the team or the team has open registration
- 'error' if the team does not exist or if the user does not have proper permissions to join the team
Reactions are currently unavailable