Skip to content

Commit

Permalink
Update deployment-info.dto.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
sleidig authored Nov 29, 2023
1 parent 9fe4fc6 commit e56b4d2
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/deployment-info.dto.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,46 @@
export class DeploymentInfo {
@ApiProperty({
description: 'Name of the system to be created. Must not contain whitespaces.',
})
name: string;

@ApiProperty({
description: 'Language for the system (and keycloak).',
})
locale?: string;

@ApiProperty({
description: 'Username of the initial user account created as site admin.',
})
username: string;

@ApiProperty({
description: 'Email for the initial user account.',
})
email: string;

@ApiProperty({
description: 'Whether the permission backend (replication-backend) should be set up.',
})
backend: boolean;

@ApiProperty({
description: 'Whether the new system should be added to uptime monitoring.',
})
monitor: boolean;

@ApiProperty({
description: '???',
})
client: string;

@ApiProperty({
description: '???',
})
clientKey: string;

@ApiProperty({
description: '???',
})
base: string;
}

0 comments on commit e56b4d2

Please sign in to comment.