mirror of
https://github.com/immich-app/immich.git
synced 2024-12-23 02:06:15 +02:00
22 lines
713 B
TypeScript
22 lines
713 B
TypeScript
|
import { PartnerEntity } from '@app/infra/entities';
|
||
|
import { userStub } from './user.stub';
|
||
|
|
||
|
export const partnerStub = {
|
||
|
adminToUser1: Object.freeze<PartnerEntity>({
|
||
|
createdAt: new Date('2023-02-23T05:06:29.716Z'),
|
||
|
updatedAt: new Date('2023-02-23T05:06:29.716Z'),
|
||
|
sharedById: userStub.admin.id,
|
||
|
sharedBy: userStub.admin,
|
||
|
sharedWith: userStub.user1,
|
||
|
sharedWithId: userStub.user1.id,
|
||
|
}),
|
||
|
user1ToAdmin1: Object.freeze<PartnerEntity>({
|
||
|
createdAt: new Date('2023-02-23T05:06:29.716Z'),
|
||
|
updatedAt: new Date('2023-02-23T05:06:29.716Z'),
|
||
|
sharedBy: userStub.user1,
|
||
|
sharedById: userStub.user1.id,
|
||
|
sharedWithId: userStub.admin.id,
|
||
|
sharedWith: userStub.admin,
|
||
|
}),
|
||
|
};
|