-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |