aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/users/user-edit/user-edit.ts
blob: 61db8a90632d74d9d6a244d331b5b51f7d51805a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { FormReactive } from '../../../shared'

export abstract class UserEdit extends FormReactive {
  videoQuotaOptions = [
    { value: -1, label: 'Unlimited' },
    { value: 100 * 1024 * 1024, label: '100MB' },
    { value: 5 * 1024 * 1024, label: '500MB' },
    { value: 1024 * 1024 * 1024, label: '1GB' },
    { value: 5 * 1024 * 1024 * 1024, label: '5GB' },
    { value: 20 * 1024 * 1024 * 1024, label: '20GB' },
    { value: 50 * 1024 * 1024 * 1024, label: '50GB' }
  ]

  abstract isCreation (): boolean
  abstract getFormButtonTitle (): string
}