mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
parent
78c7ff855d
commit
171b6bb0a6
32 changed files with 1023 additions and 163 deletions
15
server/src/dtos/system-metadata.dto.ts
Normal file
15
server/src/dtos/system-metadata.dto.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { IsBoolean } from 'class-validator';
|
||||
|
||||
export class AdminOnboardingUpdateDto {
|
||||
@IsBoolean()
|
||||
isOnboarded!: boolean;
|
||||
}
|
||||
|
||||
export class AdminOnboardingResponseDto {
|
||||
isOnboarded!: boolean;
|
||||
}
|
||||
|
||||
export class ReverseGeocodingStateResponseDto {
|
||||
lastUpdate!: string | null;
|
||||
lastImportFileName!: string | null;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue