Skip to content
Snippets Groups Projects
Unverified Commit b72706b4 authored by Joas Schilling's avatar Joas Schilling
Browse files

Move background job to PSR-4

parent 3a716ae9
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ Turning the feature off removes shared files and folders on the server for all s
<namespace>Files_Sharing</namespace>
<background-jobs>
<job>OCA\Files_sharing\Lib\DeleteOrphanedSharesJob</job>
<job>OCA\Files_sharing\ExpireSharesJob</job>
<job>OCA\Files_Sharing\DeleteOrphanedSharesJob</job>
<job>OCA\Files_Sharing\ExpireSharesJob</job>
</background-jobs>
</info>
......@@ -20,7 +20,7 @@
*
*/
namespace OCA\Files_sharing\Lib;
namespace OCA\Files_Sharing;
use OC\BackgroundJob\TimedJob;
......
......@@ -73,6 +73,8 @@ 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],
];
}
......
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