diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-05-13 08:32:42 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-05-13 08:32:42 +0200 |
commit | e753e8cc37d7586bf4ac6ebbe7314835523704af (patch) | |
tree | d52c9b79d854583c0643202913e1ff2625dc32e2 /core | |
parent | 504586aec652980ae8b29d0ac7d39aa1007f90f6 (diff) | |
parent | cb909cda97c7ea950dd0862340d6369109c971e7 (diff) | |
download | nextcloud-server-e753e8cc37d7586bf4ac6ebbe7314835523704af.tar.gz nextcloud-server-e753e8cc37d7586bf4ac6ebbe7314835523704af.zip |
Merge pull request #16290 from owncloud/upgrade-info-for-3rdparty-apps
Add info message for upgrade of an 3rdparty app
Diffstat (limited to 'core')
-rw-r--r-- | core/command/upgrade.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 6d01288a404..7f5d943bb8b 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -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>'); }); |