mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
fix(server): show partners assets on timeline without permission (#10705)
* fix(server): show partners assets on timeline without permission * save all * correct fix
This commit is contained in:
parent
887acb9d9f
commit
8b6d27f1bc
@ -45,7 +45,11 @@ export class TimelineService {
|
|||||||
if (userId) {
|
if (userId) {
|
||||||
userIds = [userId];
|
userIds = [userId];
|
||||||
if (dto.withPartners) {
|
if (dto.withPartners) {
|
||||||
const partnerIds = await getMyPartnerIds({ userId: auth.user.id, repository: this.partnerRepository });
|
const partnerIds = await getMyPartnerIds({
|
||||||
|
userId: auth.user.id,
|
||||||
|
repository: this.partnerRepository,
|
||||||
|
timelineEnabled: true,
|
||||||
|
});
|
||||||
userIds.push(...partnerIds);
|
userIds.push(...partnerIds);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user