We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d9260 commit 9e7d26cCopy full SHA for 9e7d26c
1 file changed
src/backend/src/services/teams.services.ts
@@ -162,8 +162,15 @@ export default class TeamsService {
162
163
return teamTransformer(updateTeam);
164
}
165
+
166
/**
- * Create a new team.
167
+ * Creates a new team in the database
168
+ * @param submitter The submitter who is trying to create a new team
169
+ * @param teamName the name of the new team
170
+ * @param headId the id of the user who will be the head on the new team
171
+ * @param slackId the slack id for the slack channel for the team
172
+ * @param description a short description of the team (must be less than 300 words)
173
+ * @returns The newly created team
174
*/
175
static async createTeam(
176
submitter: User,
0 commit comments