Themes: don't do face blurring for some layers (artwork, memorials, ghost_bikes)

This commit is contained in:
Pieter Vander Vennet 2024-10-12 13:36:10 +02:00
parent 7d83cb1a7f
commit 15176a1682
11 changed files with 370 additions and 342 deletions

View file

@ -7,7 +7,8 @@ export interface ImageUploader {
uploadImage(
blob: File,
currentGps: [number,number],
author: string
author: string,
noblur: boolean
): Promise<UploadResult>
}