Allow to migrate calendars of all users
This commit is contained in:
parent
41aae971a9
commit
94915e39db
2 changed files with 4 additions and 4 deletions
|
@ -61,8 +61,8 @@ class MigrateCalendars extends Command {
|
|||
protected function execute(InputInterface $input, OutputInterface $output) {
|
||||
$this->service->setup();
|
||||
|
||||
if ($input->hasArgument('user')) {
|
||||
$user = $input->getArgument('user');
|
||||
$user = $input->getArgument('user');
|
||||
if (!is_null($user)) {
|
||||
if (!$this->userManager->userExists($user)) {
|
||||
throw new \InvalidArgumentException("User <$user> in unknown.");
|
||||
}
|
||||
|
|
|
@ -61,8 +61,8 @@ class SyncBirthdayCalendar extends Command {
|
|||
* @param OutputInterface $output
|
||||
*/
|
||||
protected function execute(InputInterface $input, OutputInterface $output) {
|
||||
if ($input->getArgument('user') !== null) {
|
||||
$user = $input->getArgument('user');
|
||||
$user = $input->getArgument('user');
|
||||
if (!is_null($user)) {
|
||||
if (!$this->userManager->userExists($user)) {
|
||||
throw new \InvalidArgumentException("User <$user> in unknown.");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue