Skip to content
Snippets Groups Projects
Commit e753e8cc authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Merge pull request #16290 from owncloud/upgrade-info-for-3rdparty-apps

Add info message for upgrade of an 3rdparty app
parents 504586ae cb909cda
No related branches found
No related tags found
No related merge requests found
...@@ -130,6 +130,9 @@ class Upgrade extends Command { ...@@ -130,6 +130,9 @@ class Upgrade extends Command {
$updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use($output) { $updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use($output) {
$output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>'); $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) { $updater->listen('\OC\Updater', 'repairWarning', function ($app) use($output) {
$output->writeln('<error>Repair warning: ' . $app . '</error>'); $output->writeln('<error>Repair warning: ' . $app . '</error>');
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment