move avatar controller to core/controller

This commit is contained in:
Morris Jobke 2016-01-20 10:17:46 +01:00
parent 9008527849
commit b97fe97875
3 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ use OC\AppFramework\Utility\TimeFactory;
use \OCP\AppFramework\App;
use OC\Core\LostPassword\Controller\LostController;
use OC\Core\User\UserController;
use OC\Core\Avatar\AvatarController;
use OC\Core\Controller\AvatarController;
use \OCP\Util;
/**

View File

@ -24,7 +24,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Core\Avatar;
namespace OC\Core\Controller;
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http;
@ -42,7 +42,7 @@ use OCP\Files\Folder;
/**
* Class AvatarController
*
* @package OC\Core\Avatar
* @package OC\Core\Controller
*/
class AvatarController extends Controller {

View File

@ -18,7 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Core\Avatar;
namespace OC\Core\Controller;
use OC;
use OC\Core\Application;
@ -45,7 +45,7 @@ function is_uploaded_file($filename) {
*
* @group DB
*
* @package OC\Core\Avatar
* @package OC\Core\Controller
*/
class AvatarControllerTest extends \Test\TestCase {
use UserTrait;