mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
8 lines
322 B
TypeScript
8 lines
322 B
TypeScript
export const IAccessRepository = 'IAccessRepository';
|
|
|
|
export interface IAccessRepository {
|
|
hasPartnerAccess(userId: string, partnerId: string): Promise<boolean>;
|
|
hasPartnerAssetAccess(userId: string, assetId: string): Promise<boolean>;
|
|
hasSharedLinkAssetAccess(userId: string, assetId: string): Promise<boolean>;
|
|
}
|