Skip to content

Commit

Permalink
improved doc
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSlimvReal committed Dec 11, 2023
1 parent 19e8587 commit 096d9b8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion integrations/elementor-plugin/form-actions/aam-deploy.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function register_settings_section( $widget ) {
[
'label' => esc_html__( 'Client name', 'elementor-forms-aam-deploy' ),
'type' => \Elementor\Controls_Manager::TEXT,
'description' => esc_html__( 'Enter your client name (i.e. ???).', 'elementor-forms-aam-deploy' ),
'description' => esc_html__( 'Enter your client name.', 'elementor-forms-aam-deploy' ),
]
);

Expand Down
27 changes: 16 additions & 11 deletions src/deployment-info.dto.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { ApiProperty } from '@nestjs/swagger';

export class DeploymentInfo {
@ApiProperty({
description: 'Name of the system to be created. Must not contain whitespaces.',
description:
'Name of the system to be created. Must not contain whitespaces.',
})
name: string;

Expand All @@ -13,34 +16,36 @@ export class DeploymentInfo {
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.',
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: '???',
description: 'Name of the Keycloak confidential client.',
})
client: string;

@ApiProperty({
description: '???',
description: 'Credentials for the Keycloak confidential client.',
})
clientKey: string;

@ApiProperty({
description: '???',
description:
'The prebuilt configuration which should be used as a basis for this app.',
})
base: string;
}

0 comments on commit 096d9b8

Please sign in to comment.