@@ -9,6 +9,7 @@ import discord from '@functions/discord';
99import read from '@functions/read' ;
1010import waiver from '@functions/waiver' ;
1111import resume from '@functions/resume' ;
12+ import teamsInvite from '@functions/teams/invite' ;
1213import resetPassword from '@functions/reset-password' ;
1314import forgotPassword from '@functions/forgot-password' ;
1415import leaderboard from '@functions/leaderboard' ;
@@ -20,6 +21,12 @@ import verifyEmail from '@functions/verify-email';
2021import deleteUser from '@functions/delete' ;
2122import userExists from '@functions/user-exists' ;
2223import interestForm from '@functions/interest-form' ;
24+ import teamsCreate from '@functions/teams/create' ;
25+ import memberRemoval from '@functions/teams/member-removal' ;
26+ import declineInvitation from '@functions/teams/decline-invite' ;
27+ import teamsJoin from '@functions/teams/join' ;
28+ import teamsRead from '@functions/teams/read' ;
29+ import disband from '@functions/teams/disband' ;
2330
2431import * as path from 'path' ;
2532import * as dotenv from 'dotenv' ;
@@ -53,6 +60,7 @@ const serverlessConfiguration: AWS = {
5360 attendEvent,
5461 waiver,
5562 resume,
63+ teamsInvite,
5664 read,
5765 discord,
5866 forgotPassword,
@@ -66,6 +74,12 @@ const serverlessConfiguration: AWS = {
6674 deleteUser,
6775 userExists,
6876 interestForm,
77+ teamsCreate,
78+ memberRemoval,
79+ declineInvitation,
80+ teamsJoin,
81+ teamsRead,
82+ disband,
6983 } ,
7084 package : { individually : true , patterns : [ '!.env*' , '.env.vault' ] } ,
7185 custom : {
0 commit comments