1
0
Fork 0
peertube/shared/models/users/user.model.ts
Josh Morel fc2ec87a8c enable email verification by admin (#1348)
* enable email verification by admin

* rename/label to set email as verified

to be more explicit that admin is not sending
another email to confirm

* add update user emailVerified check-params test

* make user.model emailVerified property required
2018-11-21 08:48:29 +01:00

24 lines
564 B
TypeScript

import { Account } from '../actors'
import { VideoChannel } from '../videos/channel/video-channel.model'
import { UserRole } from './user-role'
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
export interface User {
id: number
username: string
email: string
emailVerified: boolean
nsfwPolicy: NSFWPolicyType
autoPlayVideo: boolean
role: UserRole
videoQuota: number
videoQuotaDaily: number
createdAt: Date
account: Account
videoChannels?: VideoChannel[]
blocked: boolean
blockedReason?: string
videoQuotaUsed?: number
}