Skip to content

Commit

Permalink
Add Force Ready field on NG Component
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanF committed Oct 30, 2024
1 parent 5859869 commit 24cdaf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export class ClientFormComponent implements OnInit {
bandwidth_limit: [{value: '', disabled: true}],
enabled: [false],
boolean_bandwidth_limit: [false],
force_ready: [false],
port: [22, [Validators.min(1), Validators.max(65535)]],
policiesForm: [],
behind_firewall: [false]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export class RepositoryFormComponent implements OnInit {
path: ['', Validators.required],
// eslint-disable-next-line @typescript-eslint/naming-convention
repository_key: ['', Validators.required],
enabled: [false]
enabled: [false],
force_ready: [false]
});

this.route.paramMap.subscribe((params) => {
Expand Down

0 comments on commit 24cdaf4

Please sign in to comment.