Merge pull request #14453 from overleaf/ab-admin-flag-managed

[web] Easily identify managed users and groups in admin and Front

GitOrigin-RevId: 9137a680f902a92adcc434aacd6c35726a2f5dbe
This commit is contained in:
Alexandre Bourdin
2023-08-24 12:29:29 +02:00
committed by Copybot
parent 8b5278c076
commit 9787edcc8e
3 changed files with 18 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { GroupPolicy } from '../subscription/dashboard/subscription'
import { TeamInvite } from './team-invite'
export type Subscription = {
_id: string
teamInvites: TeamInvite[]
groupPolicy: GroupPolicy
admin_id: string
groupPlan: boolean
customAccount: boolean
}
+3
View File
@@ -0,0 +1,3 @@
export type TeamInvite = {
email: string
}
+4
View File
@@ -0,0 +1,4 @@
export type User = {
_id: string
email: string
}