diff options
author | kondou <kondou@ts.unde.re> | 2013-08-28 21:20:28 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-28 21:20:28 +0200 |
commit | bdf48a6daa8234b307bb7b73a231de5227e10b30 (patch) | |
tree | c13ff6f3eafcf63fee21fd4cabd86643824606a6 /lib | |
parent | 67c5be9f199c08ac4c9307901e8e6cc678943f05 (diff) | |
download | nextcloud-server-bdf48a6daa8234b307bb7b73a231de5227e10b30.tar.gz nextcloud-server-bdf48a6daa8234b307bb7b73a231de5227e10b30.zip |
Use OC.Router.generate, TODO use cache, prepare for defaultavatars
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cleanupavatarjob.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/cleanupavatarjob.php b/lib/cleanupavatarjob.php deleted file mode 100644 index 16bf263d211..00000000000 --- a/lib/cleanupavatarjob.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - -class CleanUpAvatarJob extends \OC\BackgroundJob\TimedJob { - - public function __construct () { - $this->setInterval(7200); // 2 hours - } - - public function run ($argument) { - // TODO $view - // TODO remove ALL the tmpavatars - } -} |