You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-06-24 04:46:50 +02:00
fix(server,web): correctly remove metadata from shared links (#4464)
* wip: strip metadata * fix: authenticate time buckets * hide detail panel * fix tests * fix lint * add e2e tests * chore: open api * fix web compilation error * feat: test with asset with gps position * fix: only import fs.promises.cp * fix: cleanup mapasset * fix: format --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
committed by
GitHub
parent
4a9f58bf9b
commit
dadcf49eca
14
cli/src/api/open-api/api.ts
generated
14
cli/src/api/open-api/api.ts
generated
@ -640,6 +640,12 @@ export interface AssetResponseDto {
|
||||
* @memberof AssetResponseDto
|
||||
*/
|
||||
'fileModifiedAt': string;
|
||||
/**
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof AssetResponseDto
|
||||
*/
|
||||
'hasMetadata': boolean;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
@ -749,7 +755,7 @@ export interface AssetResponseDto {
|
||||
*/
|
||||
'tags'?: Array<TagResponseDto>;
|
||||
/**
|
||||
* base64 encoded thumbhash
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AssetResponseDto
|
||||
*/
|
||||
@ -2882,7 +2888,7 @@ export interface SharedLinkCreateDto {
|
||||
* @type {boolean}
|
||||
* @memberof SharedLinkCreateDto
|
||||
*/
|
||||
'showExif'?: boolean;
|
||||
'showMetadata'?: boolean;
|
||||
/**
|
||||
*
|
||||
* @type {SharedLinkType}
|
||||
@ -2927,7 +2933,7 @@ export interface SharedLinkEditDto {
|
||||
* @type {boolean}
|
||||
* @memberof SharedLinkEditDto
|
||||
*/
|
||||
'showExif'?: boolean;
|
||||
'showMetadata'?: boolean;
|
||||
}
|
||||
/**
|
||||
*
|
||||
@ -2994,7 +3000,7 @@ export interface SharedLinkResponseDto {
|
||||
* @type {boolean}
|
||||
* @memberof SharedLinkResponseDto
|
||||
*/
|
||||
'showExif': boolean;
|
||||
'showMetadata': boolean;
|
||||
/**
|
||||
*
|
||||
* @type {SharedLinkType}
|
||||
|
Reference in New Issue
Block a user