feat(web): show partners assets on the main timeline (#4933)
This commit is contained in:
@@ -35,4 +35,8 @@ export interface IAccessRepository {
|
||||
person: {
|
||||
hasOwnerAccess(userId: string, personId: string): Promise<boolean>;
|
||||
};
|
||||
|
||||
partner: {
|
||||
hasUpdateAccess(userId: string, partnerId: string): Promise<boolean>;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -65,7 +65,7 @@ export interface TimeBucketOptions {
|
||||
isTrashed?: boolean;
|
||||
albumId?: string;
|
||||
personId?: string;
|
||||
userId?: string;
|
||||
userIds?: string[];
|
||||
withStacked?: boolean;
|
||||
}
|
||||
|
||||
|
||||
@@ -17,4 +17,5 @@ export interface IPartnerRepository {
|
||||
get(partner: PartnerIds): Promise<PartnerEntity | null>;
|
||||
create(partner: PartnerIds): Promise<PartnerEntity>;
|
||||
remove(entity: PartnerEntity): Promise<void>;
|
||||
update(entity: Partial<PartnerEntity>): Promise<PartnerEntity>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user