mirror of
https://github.com/immich-app/immich.git
synced 2025-01-08 21:06:48 +01:00
7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
|
export const IAccessRepository = 'IAccessRepository';
|
||
|
|
||
|
export interface IAccessRepository {
|
||
|
hasPartnerAccess(userId: string, partnerId: string): Promise<boolean>;
|
||
|
hasPartnerAssetAccess(userId: string, assetId: string): Promise<boolean>;
|
||
|
}
|