mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
33529d1d9b
* refactor: AuthUserDto => AuthDto * refactor: reorganize auth-dto * refactor: AuthUser() => Auth()
13 lines
348 B
TypeScript
13 lines
348 B
TypeScript
import { APIKeyEntity } from '@app/infra/entities';
|
|
import { authStub } from './auth.stub';
|
|
import { userStub } from './user.stub';
|
|
|
|
export const keyStub = {
|
|
admin: Object.freeze({
|
|
id: 'my-random-guid',
|
|
name: 'My Key',
|
|
key: 'my-api-key (hashed)',
|
|
userId: authStub.admin.user.id,
|
|
user: userStub.admin,
|
|
} as APIKeyEntity),
|
|
};
|