feat(cli): list users (#1341)

This commit is contained in:
Jason Rasmussen
2023-01-16 19:31:46 -05:00
committed by GitHub
parent 177cc3d7f9
commit adacfb1110
5 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { UserService } from '@app/domain';
import { Command, CommandRunner } from 'nest-commander';
import { CLI_USER } from '../constants';
@Command({
name: 'list-users',
description: 'List Immich users',
})
export class ListUsersCommand extends CommandRunner {
constructor(private userService: UserService) {
super();
}
async run(): Promise<void> {
try {
const users = await this.userService.getAllUsers(CLI_USER, true);
console.dir(users);
} catch (error) {
console.error(error);
console.error('Unable to load users');
}
}
}