mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
feat(server, web): Include partner's photos on map (#7065)
* feat(server): Include partner's photos on map - if included in timeline * depend on query parameter withPartners instead of partners.inTimeline * web: map option to include partners images * make open-api
This commit is contained in:
parent
7d59900662
commit
6adff50f0a
14 changed files with 70 additions and 19 deletions
|
|
@ -46,6 +46,7 @@ export interface MapSettings {
|
|||
allowDarkMode: boolean;
|
||||
includeArchived: boolean;
|
||||
onlyFavorites: boolean;
|
||||
withPartners: boolean;
|
||||
relativeDate: string;
|
||||
dateAfter: string;
|
||||
dateBefore: string;
|
||||
|
|
@ -55,6 +56,7 @@ export const mapSettings = persisted<MapSettings>('map-settings', {
|
|||
allowDarkMode: true,
|
||||
includeArchived: false,
|
||||
onlyFavorites: false,
|
||||
withPartners: false,
|
||||
relativeDate: '',
|
||||
dateAfter: '',
|
||||
dateBefore: '',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue