MM-39720_Invite People - phase 1

This commit is contained in:
Julian Mondragon
2022-10-31 17:25:52 -05:00
parent f033a28eb2
commit 647cd4c9c2
17 changed files with 224 additions and 11 deletions

View File

@@ -87,6 +87,9 @@ export default class TeamModel extends Model implements TeamModelInterface {
/** allowed_domains : List of domains that can join this team */
@field('allowed_domains') allowedDomains!: string;
/** invite_id : The token id to use in invites to the team */
@field('invite_id') inviteId!: string;
/** categories : All the categories associated with this team */
@children(CATEGORY) categories!: Query<CategoryModel>;