diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 16:46:41 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:06:06 +0200 |
commit | db2e9df5f000b129e9dad2ce801baada0a17a8a4 (patch) | |
tree | a9b9bda0c6d709f5150eb7e0e63a0f8d254dc17f /lib | |
parent | c807a26bd843d899614d99ffa7f5d854429eecb4 (diff) | |
download | nextcloud-server-db2e9df5f000b129e9dad2ce801baada0a17a8a4.tar.gz nextcloud-server-db2e9df5f000b129e9dad2ce801baada0a17a8a4.zip |
Move Job to a better class name
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Repair/DropOldJobs.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/Repair/DropOldJobs.php b/lib/private/Repair/DropOldJobs.php index c040aa03961..f0ebf29065d 100644 --- a/lib/private/Repair/DropOldJobs.php +++ b/lib/private/Repair/DropOldJobs.php @@ -73,8 +73,12 @@ class DropOldJobs implements IRepairStep { ['class' => 'OC_Cache_FileGlobalGC', 'arguments' => null], ['class' => 'OC\Cache\FileGlobalGC', 'arguments' => null], ['class' => 'OCA\Files\BackgroundJob\DeleteOrphanedTagsJob', 'arguments' => null], + ['class' => 'OCA\Files_sharing\Lib\DeleteOrphanedSharesJob', 'arguments' => null], ['class' => 'OCA\Files_sharing\ExpireSharesJob', 'arguments' => null], + + ['class' => 'OCA\user_ldap\lib\Jobs', 'arguments' => null], + ['class' => '\OCA\User_LDAP\Jobs\CleanUp', 'arguments' => null], ]; } |