Fix quota in instance features table
This commit is contained in:
parent
cd4cb177e6
commit
34dd7cb4ca
|
@ -22,7 +22,7 @@
|
|||
<ng-container *ngIf="initialUserVideoQuota !== -1">
|
||||
{{ initialUserVideoQuota | bytes: 0 }} <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
|
||||
|
||||
<my-help helpType="custom" [customHtml]="quotaHelpIndication"></my-help>
|
||||
<my-help tooltipPlacement="auto" helpType="custom" [customHtml]="quotaHelpIndication"></my-help>
|
||||
</ng-container>
|
||||
|
||||
<ng-container i18n *ngIf="initialUserVideoQuota === -1">
|
||||
|
|
|
@ -22,7 +22,7 @@ export class InstanceFeaturesTableComponent implements OnInit {
|
|||
}
|
||||
|
||||
get dailyUserVideoQuota () {
|
||||
return this.serverService.getConfig().user.videoQuotaDaily
|
||||
return Math.min(this.initialUserVideoQuota, this.serverService.getConfig().user.videoQuotaDaily)
|
||||
}
|
||||
|
||||
ngOnInit () {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import * as express from 'express'
|
||||
import { join } from 'path'
|
||||
import { root } from '../helpers/core-utils'
|
||||
import { ACCEPT_HEADERS, STATIC_MAX_AGE, STATIC_PATHS } from '../initializers/constants'
|
||||
import { ACCEPT_HEADERS, STATIC_MAX_AGE } from '../initializers/constants'
|
||||
import { asyncMiddleware, embedCSP } from '../middlewares'
|
||||
import { buildFileLocale, getCompleteLocale, is18nLocale, LOCALE_FILES } from '../../shared/models/i18n/i18n'
|
||||
import { ClientHtml } from '../lib/client-html'
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
import * as cors from 'cors'
|
||||
import * as express from 'express'
|
||||
import {
|
||||
HLS_STREAMING_PLAYLIST_DIRECTORY, PEERTUBE_VERSION,
|
||||
HLS_STREAMING_PLAYLIST_DIRECTORY,
|
||||
PEERTUBE_VERSION,
|
||||
ROUTE_CACHE_LIFETIME,
|
||||
STATIC_DOWNLOAD_PATHS,
|
||||
STATIC_MAX_AGE,
|
||||
|
|
Loading…
Reference in New Issue