mirror of https://github.com/immich-app/immich.git
14 lines
628 B
TypeScript
14 lines
628 B
TypeScript
import { SharedLinkEntity } from '@app/infra/entities';
|
|
|
|
export const ISharedLinkRepository = 'ISharedLinkRepository';
|
|
|
|
export interface ISharedLinkRepository {
|
|
getAll(userId: string): Promise<SharedLinkEntity[]>;
|
|
get(userId: string, id: string): Promise<SharedLinkEntity | null>;
|
|
getByKey(key: string): Promise<SharedLinkEntity | null>;
|
|
create(entity: Omit<SharedLinkEntity, 'id' | 'user'>): Promise<SharedLinkEntity>;
|
|
remove(entity: SharedLinkEntity): Promise<SharedLinkEntity>;
|
|
save(entity: Partial<SharedLinkEntity>): Promise<SharedLinkEntity>;
|
|
hasAssetAccess(id: string, assetId: string): Promise<boolean>;
|
|
}
|