aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/server-commands
diff options
context:
space:
mode:
Diffstat (limited to 'shared/server-commands')
-rw-r--r--shared/server-commands/server/config-command.ts5
-rw-r--r--shared/server-commands/users/users-command.ts4
2 files changed, 7 insertions, 2 deletions
diff --git a/shared/server-commands/server/config-command.ts b/shared/server-commands/server/config-command.ts
index eb6bb95a5..303fcab88 100644
--- a/shared/server-commands/server/config-command.ts
+++ b/shared/server-commands/server/config-command.ts
@@ -350,6 +350,11 @@ export class ConfigCommand extends AbstractCommand {
350 enabled: true 350 enabled: true
351 }, 351 },
352 user: { 352 user: {
353 history: {
354 videos: {
355 enabled: true
356 }
357 },
353 videoQuota: 5242881, 358 videoQuota: 5242881,
354 videoQuotaDaily: 318742 359 videoQuotaDaily: 318742
355 }, 360 },
diff --git a/shared/server-commands/users/users-command.ts b/shared/server-commands/users/users-command.ts
index 8a42fafc8..5b39d3488 100644
--- a/shared/server-commands/users/users-command.ts
+++ b/shared/server-commands/users/users-command.ts
@@ -165,8 +165,8 @@ export class UsersCommand extends AbstractCommand {
165 username, 165 username,
166 adminFlags, 166 adminFlags,
167 password = 'password', 167 password = 'password',
168 videoQuota = 42000000, 168 videoQuota,
169 videoQuotaDaily = -1, 169 videoQuotaDaily,
170 role = UserRole.USER 170 role = UserRole.USER
171 } = options 171 } = options
172 172