2023-07-31 18:28:07 -07:00
|
|
|
import { UserEntity } from '@app/infra/entities';
|
|
|
|
import { authStub } from './auth.stub';
|
|
|
|
|
|
|
|
export const userStub = {
|
|
|
|
admin: Object.freeze<UserEntity>({
|
|
|
|
...authStub.admin,
|
|
|
|
password: 'admin_password',
|
|
|
|
firstName: 'admin_first_name',
|
|
|
|
lastName: 'admin_last_name',
|
|
|
|
storageLabel: 'admin',
|
|
|
|
externalPath: null,
|
|
|
|
oauthId: '',
|
|
|
|
shouldChangePassword: false,
|
|
|
|
profileImagePath: '',
|
|
|
|
createdAt: new Date('2021-01-01'),
|
|
|
|
deletedAt: null,
|
|
|
|
updatedAt: new Date('2021-01-01'),
|
|
|
|
tags: [],
|
|
|
|
assets: [],
|
2023-08-09 19:01:16 -07:00
|
|
|
memoriesEnabled: true,
|
2023-07-31 18:28:07 -07:00
|
|
|
}),
|
|
|
|
user1: Object.freeze<UserEntity>({
|
|
|
|
...authStub.user1,
|
|
|
|
password: 'immich_password',
|
|
|
|
firstName: 'immich_first_name',
|
|
|
|
lastName: 'immich_last_name',
|
|
|
|
storageLabel: null,
|
|
|
|
externalPath: null,
|
|
|
|
oauthId: '',
|
|
|
|
shouldChangePassword: false,
|
|
|
|
profileImagePath: '',
|
|
|
|
createdAt: new Date('2021-01-01'),
|
|
|
|
deletedAt: null,
|
|
|
|
updatedAt: new Date('2021-01-01'),
|
|
|
|
tags: [],
|
|
|
|
assets: [],
|
2023-08-09 19:01:16 -07:00
|
|
|
memoriesEnabled: true,
|
2023-07-31 18:28:07 -07:00
|
|
|
}),
|
|
|
|
user2: Object.freeze<UserEntity>({
|
|
|
|
...authStub.user2,
|
|
|
|
password: 'immich_password',
|
|
|
|
firstName: 'immich_first_name',
|
|
|
|
lastName: 'immich_last_name',
|
|
|
|
storageLabel: null,
|
|
|
|
externalPath: null,
|
|
|
|
oauthId: '',
|
|
|
|
shouldChangePassword: false,
|
|
|
|
profileImagePath: '',
|
|
|
|
createdAt: new Date('2021-01-01'),
|
|
|
|
deletedAt: null,
|
|
|
|
updatedAt: new Date('2021-01-01'),
|
|
|
|
tags: [],
|
|
|
|
assets: [],
|
2023-08-09 19:01:16 -07:00
|
|
|
memoriesEnabled: true,
|
2023-07-31 18:28:07 -07:00
|
|
|
}),
|
|
|
|
storageLabel: Object.freeze<UserEntity>({
|
|
|
|
...authStub.user1,
|
|
|
|
password: 'immich_password',
|
|
|
|
firstName: 'immich_first_name',
|
|
|
|
lastName: 'immich_last_name',
|
|
|
|
storageLabel: 'label-1',
|
|
|
|
externalPath: null,
|
|
|
|
oauthId: '',
|
|
|
|
shouldChangePassword: false,
|
|
|
|
profileImagePath: '',
|
|
|
|
createdAt: new Date('2021-01-01'),
|
|
|
|
deletedAt: null,
|
|
|
|
updatedAt: new Date('2021-01-01'),
|
|
|
|
tags: [],
|
|
|
|
assets: [],
|
2023-08-09 19:01:16 -07:00
|
|
|
memoriesEnabled: true,
|
2023-07-31 18:28:07 -07:00
|
|
|
}),
|
|
|
|
};
|