Skip to content

Commit b5664e5

Browse files
committed
Merge branch 'hotfix/1.3.2'
2 parents e35a7b7 + 1607acd commit b5664e5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.3.2] - 2023-07-11
8+
- [#157](https://github.com/os2display/display-api-service/pull/157)
9+
Fix question input on create user command
10+
711
## [1.3.1] - 2023-07-11
812
- [#156](https://github.com/os2display/display-api-service/pull/156)
913
Fix permissions in create release github action

src/Command/User/AddUserCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ protected function interact(InputInterface $input, OutputInterface $output): voi
173173

174174
$role = $helper->ask($input, $output, $question);
175175
$output->writeln('You have just selected: '.$role);
176+
$input->setArgument('role', $role);
176177
}
177178

178179
// Ask for the tenant keys if it's not defined
@@ -188,6 +189,7 @@ protected function interact(InputInterface $input, OutputInterface $output): voi
188189

189190
$tenantKeys = $helper->ask($input, $output, $question);
190191
$output->writeln('You have just selected: '.implode(', ', $tenantKeys));
192+
$input->setArgument('tenant-keys', $tenantKeys);
191193
}
192194
}
193195

0 commit comments

Comments
 (0)