mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
import { IAccessRepository } from '@app/domain';
|
|
|
|
export const newAccessRepositoryMock = (): jest.Mocked<IAccessRepository> => {
|
|
return {
|
|
hasPartnerAccess: jest.fn(),
|
|
hasPartnerAssetAccess: jest.fn(),
|
|
hasSharedLinkAssetAccess: jest.fn(),
|
|
};
|
|
};
|