diff options
Diffstat (limited to 'shared/extra-utils/server/servers.ts')
-rw-r--r-- | shared/extra-utils/server/servers.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shared/extra-utils/server/servers.ts b/shared/extra-utils/server/servers.ts index f5dc0326f..4d9599680 100644 --- a/shared/extra-utils/server/servers.ts +++ b/shared/extra-utils/server/servers.ts | |||
@@ -16,7 +16,7 @@ import { AbusesCommand } from '../moderation' | |||
16 | import { OverviewsCommand } from '../overviews' | 16 | import { OverviewsCommand } from '../overviews' |
17 | import { SearchCommand } from '../search' | 17 | import { SearchCommand } from '../search' |
18 | import { SocketIOCommand } from '../socket' | 18 | import { SocketIOCommand } from '../socket' |
19 | import { AccountsCommand, BlocklistCommand, NotificationsCommand, SubscriptionsCommand } from '../users' | 19 | import { AccountsCommand, BlocklistCommand, LoginCommand, NotificationsCommand, SubscriptionsCommand } from '../users' |
20 | import { | 20 | import { |
21 | BlacklistCommand, | 21 | BlacklistCommand, |
22 | CaptionsCommand, | 22 | CaptionsCommand, |
@@ -126,6 +126,7 @@ interface ServerInfo { | |||
126 | sqlCommand?: SQLCommand | 126 | sqlCommand?: SQLCommand |
127 | notificationsCommand?: NotificationsCommand | 127 | notificationsCommand?: NotificationsCommand |
128 | serversCommand?: ServersCommand | 128 | serversCommand?: ServersCommand |
129 | loginCommand?: LoginCommand | ||
129 | } | 130 | } |
130 | 131 | ||
131 | function flushAndRunMultipleServers (totalServers: number, configOverride?: Object) { | 132 | function flushAndRunMultipleServers (totalServers: number, configOverride?: Object) { |
@@ -357,6 +358,7 @@ function assignCommands (server: ServerInfo) { | |||
357 | server.sqlCommand = new SQLCommand(server) | 358 | server.sqlCommand = new SQLCommand(server) |
358 | server.notificationsCommand = new NotificationsCommand(server) | 359 | server.notificationsCommand = new NotificationsCommand(server) |
359 | server.serversCommand = new ServersCommand(server) | 360 | server.serversCommand = new ServersCommand(server) |
361 | server.loginCommand = new LoginCommand(server) | ||
360 | } | 362 | } |
361 | 363 | ||
362 | async function reRunServer (server: ServerInfo, configOverride?: any) { | 364 | async function reRunServer (server: ServerInfo, configOverride?: any) { |