mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
parent
25c9b779e4
commit
4b39d37cae
19 changed files with 494 additions and 275 deletions
14
server/src/commands/index.ts
Normal file
14
server/src/commands/index.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { ListUsersCommand } from 'src/commands/list-users.command';
|
||||
import { DisableOAuthLogin, EnableOAuthLogin } from 'src/commands/oauth-login';
|
||||
import { DisablePasswordLoginCommand, EnablePasswordLoginCommand } from 'src/commands/password-login';
|
||||
import { PromptPasswordQuestions, ResetAdminPasswordCommand } from 'src/commands/reset-admin-password.command';
|
||||
|
||||
export const commands = [
|
||||
ResetAdminPasswordCommand,
|
||||
PromptPasswordQuestions,
|
||||
EnablePasswordLoginCommand,
|
||||
DisablePasswordLoginCommand,
|
||||
EnableOAuthLogin,
|
||||
DisableOAuthLogin,
|
||||
ListUsersCommand,
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue