diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-08-16 20:28:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-16 20:28:16 +0200 |
commit | 2d861c9feaa233b89f4d75e1bf4af6b04b05b081 (patch) | |
tree | cd3590b175e6ee923ef1265e002fd1aaa60504fa /lib/public/App | |
parent | 9db189174c26326bbb58d96f614a415cd15542d1 (diff) | |
parent | 4943441bde11e78827fdeb599ca4cd7b783672ce (diff) | |
download | nextcloud-server-2d861c9feaa233b89f4d75e1bf4af6b04b05b081.tar.gz nextcloud-server-2d861c9feaa233b89f4d75e1bf4af6b04b05b081.zip |
Merge pull request #796 from nextcloud/implement_712
Admin page split
Diffstat (limited to 'lib/public/App')
-rw-r--r-- | lib/public/App/ManagerEvent.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/public/App/ManagerEvent.php b/lib/public/App/ManagerEvent.php index a70345b62fd..b25ea55aee6 100644 --- a/lib/public/App/ManagerEvent.php +++ b/lib/public/App/ManagerEvent.php @@ -36,6 +36,11 @@ class ManagerEvent extends Event { const EVENT_APP_ENABLE_FOR_GROUPS = 'OCP\App\IAppManager::enableAppForGroups'; const EVENT_APP_DISABLE = 'OCP\App\IAppManager::disableApp'; + /** + * @since 9.1.0 + */ + const EVENT_APP_UPDATE = 'OCP\App\IAppManager::updateApp'; + /** @var string */ protected $event; /** @var string */ |