Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Extend contacts migrator
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Apr 8, 2022
commit d8eaae821722115f27e0d2fe4b3242b052a1e84c
21 changes: 21 additions & 0 deletions apps/dav/lib/UserMigration/ContactsMigrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -363,4 +363,25 @@ public function import(IUser $user, IImportSource $importSource, OutputInterface
}
}
}

/**
* {@inheritDoc}
*/
public function getId(): string {
return 'contacts';
}

/**
* {@inheritDoc}
*/
public function getDisplayName(): string {
return $this->l10n->t('Contacts');
}

/**
* {@inheritDoc}
*/
public function getDescription(): string {
return $this->l10n->t('Contacts and groups');
}
}