Add info message for upgrade of an 3rdparty app
This commit is contained in:
parent
d4eff55342
commit
cb909cda97
1 changed files with 3 additions and 0 deletions
|
@ -130,6 +130,9 @@ class Upgrade extends Command {
|
|||
$updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use($output) {
|
||||
$output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>');
|
||||
});
|
||||
$updater->listen('\OC\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
|
||||
$output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');
|
||||
});
|
||||
$updater->listen('\OC\Updater', 'repairWarning', function ($app) use($output) {
|
||||
$output->writeln('<error>Repair warning: ' . $app . '</error>');
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue